java.util.regex

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 » Apache Harmony Java SE » java package » java.util.regex 
java.util.regex
Java Source File NameTypeComment
AbstractCharClass.javaClass This class represents character classes, i.e.
AbstractLineTerminator.javaClass Line terminator factory
author:
   Nikolay A.
AbstractSet.javaClass Basic class for nodes, representing given regular expression. Note: All the classes representing nodes has set prefix;
author:
   Nikolay A.
AheadFSet.javaClass LookAhead FSet, always returns true;
author:
   Nikolay A.
AltGroupQuantifierSet.javaClass Represents "?" quantifier over composite sets.
author:
   Nikolay A.
AltQuantifierSet.javaClass Represents "?" quantifier over leaf sets.
author:
   Nikolay A.
AtomicFSet.javaClass
author:
   Nikolay A.
AtomicJointSet.javaClass This class represent atomic group (?>X), once X matches, this match become unchangeable till the end of the match.
author:
   Nikolay A.
BackReferencedSingleSet.javaClass Group node over subexpression w/o alternations.
BackReferenceSet.javaClass Back reference node, i.e.
BehindFSet.javaClass FSet for lookbehind constructs.
CanClasses.javaClass This class gives us a hashtable that contains canonical classes that are generated from http://www.unicode.org/Public/4.0-Update/UnicodeData-4.0.0.txt.
CharClass.javaClass User defined character classes ([abef]).
CharSet.javaClass Represents node accepting single character.
author:
   Nikolay A.
CIBackReferenceSet.javaClass Case Insensitive back reference node;
author:
   Nikolay A.
CICharSet.javaClass Represents node accepting single character in case insensitive manner.
author:
   Nikolay A.
CIDecomposedCharSet.javaClass Represents case insensitive canonical decomposition of Unicode character.
CISequenceSet.javaClass This class represents ASCII case insensitive character sequences.
author:
   Nikolay A.
CompositeGroupQuantifierSet.javaClass Composite (i.e.
CompositeQuantifierSet.javaClass Composite (i.e.
CompositeRangeSet.javaClass This class is used to split the range that contains surrogate characters into two ranges: the first consisting of these surrogate characters and the second consisting of all others characters from the parent range.
DecomposedCharSet.javaClass Represents canonical decomposition of Unicode character.
DotAllQuantifierSet.javaClass Special node for ".*" construction for any character including line terminators.
author:
   Nikolay A.
DotAllSet.javaClass Node accepting any character including line terminators.
author:
   Nikolay A.
DotQuantifierSet.javaClass Special node for ".*" construction. The main idea here is to find line terminator and try to find the rest of the construction from this point.
author:
   Nikolay A.
DotSet.javaClass Node accepting any character except line terminators;
author:
   Nikolay A.
EmptySet.javaClass Valid constant zero character match.
author:
   Nikolay A.
EOISet.javaClass Represents end of input '\z', i.e.
EOLSet.javaClass Represents node accepting single character.
author:
   Nikolay A.
FinalSet.javaClass Special construction which marks end of pattern.
author:
   Nikolay A.
FSet.javaClass The node which marks end of the particular group.
author:
   Nikolay A.
GroupQuantifierSet.javaClass Default quantifier over groups, in fact this type of quantifier is generally used for constructions we cant identify number of characters they consume.
author:
   Nikolay A.
HangulDecomposedCharSet.javaClass Represents canonical decomposition of Hangul syllable.
HashDecompositions.javaClass This class gives us a hashtable that contains canonical decomposition mappings that are generated from http://www.unicode.org/Public/4.0-Update/UnicodeData-4.0.0.txt.
HighSurrogateCharSet.javaClass This class represents high surrogate character.
I18n.javaClass Internationalization stub.
IntArrHash.javaClass Hashtable implementation for int arrays.
IntHash.javaClass Hashtable implementation for int values.
JointSet.javaClass Represents group, which is alternation of other subexpression.
LeafQuantifierSet.javaClass
author:
   Nikolay A.
LeafSet.javaClass Base class for nodes representing leaf tokens of the RE, those who consumes fixed number of characters.
author:
   Nikolay A.
Lexer.javaClass The purpose of this class is to break given pattern into RE tokens;
author:
   Nikolay A.
LowHighSurrogateRangeSet.javaClass
LowSurrogateCharSet.javaClass This class represents low surrogate character.
Matcher.javaClass Note: main functionality of this class is hidden into nodes match methods.
MatchResult.javaInterface
author:
   Nikolay A.
MatchResultImpl.javaClass Match result implementation Note: probably it might make sense to combine this class with Matcher.
author:
   Nikolay A.
MultiLineEOLSet.javaClass Represents multiline version of the dollar sign.
author:
   Nikolay A.
MultiLineSOLSet.javaClass Multiline version of the ^ sign.
author:
   Nikolay A.
NegativeLookAhead.javaClass Negative look ahead node.
author:
   Nikolay A.
NegativeLookBehind.javaClass Negative look behind node.
author:
   Nikolay A.
NonCapFSet.javaClass Non-capturing group closing node.
author:
   Nikolay A.
NonCapJointSet.javaClass Node representing non-capturing group
author:
   Nikolay A.
Pattern.javaClass Pattern implements a compiler for regular expressions as defined by the J2SE specification.
PatternSyntaxException.javaClass
author:
   Nikolay A.
PosAltGroupQuantifierSet.javaClass Possessive quantifier over group, see java.util.regex.GroupQuantifierSet for more details.
author:
   Nikolay A.
PosCompositeGroupQuantifierSet.javaClass Possessive composite (i.e.
PositiveLookAhead.javaClass Positive lookahead node.
author:
   Nikolay A.
PositiveLookBehind.javaClass Positive lookbehind node.
author:
   Nikolay A.
PosPlusGroupQuantifierSet.javaClass Possessive + quantifier node over groups.
author:
   Nikolay A.
PossessiveAltQuantifierSet.javaClass Possessive ? quantifier node.
author:
   Nikolay A.
PossessiveCompositeQuantifierSet.javaClass Possessive composite (i.e.
PossessiveGroupQuantifierSet.javaClass Possessive quantifier set over groups.
author:
   Nikolay A.
PossessiveQuantifierSet.javaClass Possessive quantifier set over LeafSet's
author:
   Nikolay A.
PreviousMatch.javaClass Node representing previous match (\G).
author:
   Nikolay A.
Quantifier.javaClass Represents RE quantifier; contains two fields responsible for min and max number of repetitions.
QuantifierSet.javaClass Base class for quantifiers.
author:
   Nikolay A.
RangeSet.javaClass Represents node accepting single character from the given char class.
author:
   Nikolay A.
RelAltGroupQuantifierSet.javaClass Reluctant version of "?" quantifier set over group.
author:
   Nikolay A.
RelCompositeGroupQuantifierSet.javaClass Reluctant version of composite (i.e.
ReluctantAltQuantifierSet.javaClass This class represents ?? quantifier over leaf sets.
author:
   Nikolay A.
ReluctantCompositeQuantifierSet.javaClass Reluctant version of composite(i.e.
ReluctantGroupQuantifierSet.javaClass Relactant version of the group quantifier set.
author:
   Nikolay A.
ReluctantQuantifierSet.javaClass This class represents [+*]? constructs over LeafSets.
See Also:   java.util.regex.LeafSet
author:
   Nikolay A.
SequenceSet.javaClass This class represents nodes constructed with character sequences.
SingleDecompositions.javaClass This class gives us a hashtable that contains information about symbols that are one symbol decompositions that is generated from http://www.unicode.org/Public/4.0-Update/UnicodeData-4.0.0.txt.
SingleSet.javaClass Group node over subexpression w/o alternations.
author:
   Nikolay A.
SOLSet.javaClass Represents node accepting single character.
author:
   Nikolay A.
SpecialToken.javaClass This is base class for special tokens like character classes and quantifiers.
author:
   Nikolay A.
SupplCharSet.javaClass Represents node accepting single supplementary codepoint.
SupplRangeSet.javaClass Represents node accepting single character from the given char class.
UCIBackReferenceSet.javaClass Unicode case insensitive back reference (i.e.
UCICharSet.javaClass Represents node accepting single character in unicode case insensitive manner.
author:
   Nikolay A.
UCIDecomposedCharSet.javaClass Represents Unicode case insensitive canonical decomposition of Unicode character.
UCIRangeSet.javaClass Represents node accepting single character from the given char class.
UCISequenceSet.javaClass Node accepting substrings in unicode case insensitive manner.
author:
   Nikolay A.
UCISupplCharSet.javaClass Represents node accepting single supplementary codepoint in Unicode case insensitive manner.
UCISupplRangeSet.javaClass Represents node accepting single character from the given char class in Unicode case insensitive manner.
UEOLSet.javaClass Unix line terminator, accepting only \n.
author:
   Nikolay A.
UMultiLineEOLSet.javaClass Unix style multiline end-of-line node.
author:
   Nikolay A.
UnicodeCategory.javaClass Unicode category (i.e.
UnicodeCategoryScope.javaClass Unicode category scope (i.e IsL, IsM, ...)
author:
   Nikolay A.
UnifiedQuantifierSet.javaClass Greedy quantifier node for the case where there is no intersection with next node and normal quantifiers could be treated as greedy and possessive.
author:
   Nikolay A.
WordBoundary.javaClass Represents word boundary, checks current character and previous one if different types returns true;
author:
   Nikolay A.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.