Java Doc for SequenceStore.java in  » Parser » JTopas » de » susebox » jtopas » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Parser » JTopas » de.susebox.jtopas.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   de.susebox.jtopas.impl.SequenceStore

All known Subclasses:   de.susebox.jtopas.impl.NoCaseSequenceStore,
SequenceStore
public class SequenceStore implements SequenceHandler,KeywordHandler(Code)
This class is used by de.susebox.jtopas.StandardTokenizerProperties to store and search special sequences, comments and strings as well as keywords. The class is not suitable for standalone use since it does not check parameters for null values, assumes a thread-safe context etc.
See Also:   de.susebox.jtopas.StandardTokenizerProperties
See Also:   de.susebox.jtopas.spi.SequenceHandler
author:
   Heiko Blau

Inner Class :final class PropertyList
Inner Class :final class SpecialSequencesIterator implements Iterator

Field Summary
public static  charDIRECT_INDEX_COUNT
    

Constructor Summary
public  SequenceStore(boolean useExactLength)
     The constructor initializes a SequenceStore with the given comparision policy (prefix comparison).

Method Summary
public  TokenizerPropertyaddKeyword(TokenizerProperty property)
     Addingt or replacing a keyword.
public  TokenizerPropertyaddSpecialSequence(TokenizerProperty property)
     Addingt or replacing a special sequence, comment or string.
protected  intcompare(char char1, char char2)
     Compare tho characters.
public  TokenizerPropertygetKeyword(String image)
     Get the full description of a keyword property.
public  IteratorgetKeywords()
     This method returns an java.util.Iterator of TokenizerProperty objects describing keywords.
public  intgetSequenceMaxLength()
     This method returns the length of the longest special sequence, comment or string prefix that is known to this SequenceStore.
public  TokenizerPropertygetSpecialSequence(String image)
     Get the full description of a special sequence property.
public  IteratorgetSpecialSequences(int type)
     This method returns an java.util.Iterator of TokenizerProperty objects.
protected  chargetStartChar(char startChar)
     The method returns the normalized start character.
public  booleanhasKeywords()
     This method returns true if there are any keywords registered in this instance.
public  booleanhasSequenceCommentOrString()
     This method returns true if there are any special sequences, strings or comments registered in this instance.
public  TokenizerPropertyisKeyword(DataProvider dataProvider)
     This method checks if the given data form a keyword.
public  TokenizerPropertyremoveKeyword(String image)
     Removing a special sequence from the store.
public  TokenizerPropertyremoveSpecialSequence(String image)
     Removing a special sequence from the store.
public  TokenizerPropertystartsWithSequenceCommentOrString(DataProvider dataProvider)
     This method checks if a given range of data starts with a special sequence, a comment or a string.

Field Detail
DIRECT_INDEX_COUNT
public static char DIRECT_INDEX_COUNT(Code)
This number is the size of the array that is directly indexed by letters




Constructor Detail
SequenceStore
public SequenceStore(boolean useExactLength)(Code)
The constructor initializes a SequenceStore with the given comparision policy (prefix comparison).
Parameters:
  useExactLength - if true search only for a property thathas the length of de.susebox.jtopas.spi.DataProvider.getLength




Method Detail
addKeyword
public TokenizerProperty addKeyword(TokenizerProperty property)(Code)
Addingt or replacing a keyword.
Parameters:
  property - the description of the new keyword the previously version of the given property or null



addSpecialSequence
public TokenizerProperty addSpecialSequence(TokenizerProperty property)(Code)
Addingt or replacing a special sequence, comment or string.
Parameters:
  property - the description of the new sequence the previously version of the given property or null



compare
protected int compare(char char1, char char2)(Code)
Compare tho characters. Returns the difference of the to characters, 0 if they are equal. The default implementation compares case-sensitive, for the lexicographical solution see NoCaseSequenceStore ..............
Parameters:
  char1 - first character to compare
Parameters:
  char2 - first character to compare 0 if equal, < 0 if char1 < char2, > 0 otherwise



getKeyword
public TokenizerProperty getKeyword(String image)(Code)
Get the full description of a keyword property.
Parameters:
  image - keyword candidate to look for the full keyword description or null



getKeywords
public Iterator getKeywords()(Code)
This method returns an java.util.Iterator of TokenizerProperty objects describing keywords. enumeration of TokenizerProperty objects representing keywords



getSequenceMaxLength
public int getSequenceMaxLength()(Code)
This method returns the length of the longest special sequence, comment or string prefix that is known to this SequenceStore. See de.susebox.jtopas.spi.SequenceHandler for details. the number of characters needed in the worst case to identify a special sequence



getSpecialSequence
public TokenizerProperty getSpecialSequence(String image)(Code)
Get the full description of a special sequence property.
Parameters:
  image - sequence to find the full sequence description or null



getSpecialSequences
public Iterator getSpecialSequences(int type)(Code)
This method returns an java.util.Iterator of TokenizerProperty objects.
Parameters:
  type - type of special sequence like de.susebox.jtopas.Token.STRING enumeration of TokenizerProperty objects



getStartChar
protected char getStartChar(char startChar)(Code)
The method returns the normalized start character. This default implementation returns the given character itself, for case-insensitive handling see the derived class NoCaseSequenceStore .
Parameters:
  startChar - a not normalized start character the normalized start character



hasKeywords
public boolean hasKeywords()(Code)
This method returns true if there are any keywords registered in this instance. See the de.susebox.jtopas.spi.KeywordHandler interface for details. true if there are any keywords available, false otherwise.



hasSequenceCommentOrString
public boolean hasSequenceCommentOrString()(Code)
This method returns true if there are any special sequences, strings or comments registered in this instance. See the de.susebox.jtopas.spi.SequenceHandler interface for details. true if there are any special sequences, strings orcomments available, false otherwise.



isKeyword
public TokenizerProperty isKeyword(DataProvider dataProvider) throws TokenizerException, NullPointerException(Code)
This method checks if the given data form a keyword. See de.susebox.jtopas.spi.KeywordHandler for details.
Parameters:
  dataProvider - the source to get the data range from a de.susebox.jtopas.TokenizerProperty if keyword has been found, null otherwise
throws:
  TokenizerException - generic exception
throws:
  NullPointerException - if no DataProvider is given



removeKeyword
public TokenizerProperty removeKeyword(String image)(Code)
Removing a special sequence from the store. If the special sequence denoted by the given string does not exist the method returns null.
Parameters:
  image - sequence to remove the removed property or null if the sequence was not found



removeSpecialSequence
public TokenizerProperty removeSpecialSequence(String image)(Code)
Removing a special sequence from the store. If the special sequence denoted by the given string does not exist the method returns null.
Parameters:
  image - sequence to remove the removed property or null if the sequence was not found



startsWithSequenceCommentOrString
public TokenizerProperty startsWithSequenceCommentOrString(DataProvider dataProvider) throws TokenizerException, NullPointerException(Code)
This method checks if a given range of data starts with a special sequence, a comment or a string. See de.susebox.jtopas.spi.SequenceHandler for details.
Parameters:
  dataProvider - the source to get the data range from a de.susebox.jtopas.TokenizerProperty if a special sequence, comment or string could be detected, null otherwise
throws:
  TokenizerException - generic exception
throws:
  NullPointerException - if no DataProvider is given



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.