All Packages Class Hierarchy
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Index of all Fields and Methods
- AwkCompiler().
Constructor for class com.oroinc.text.awk.AwkCompiler
-
- AwkMatcher().
Constructor for class com.oroinc.text.awk.AwkMatcher
-
- AwkStreamInput(Reader).
Constructor for class com.oroinc.text.awk.AwkStreamInput
- Creates an AwkStreamInput instance bound to a Reader with an
initial buffer size and default buffer increment of 2048 bytes.
- AwkStreamInput(Reader, int).
Constructor for class com.oroinc.text.awk.AwkStreamInput
- Creates an AwkStreamInput instance bound to a Reader with a
specified initial buffer size and default buffer increment.
- CASE_INSENSITIVE_MASK.
Static variable in class com.oroinc.text.awk.AwkCompiler
-
- compile(char[]).
Method in class com.oroinc.text.awk.AwkCompiler
- Same as calling compile(pattern, AwkCompiler.DEFAULT_MASK);
- compile(char[], int).
Method in class com.oroinc.text.awk.AwkCompiler
- Compiles an Awk regular expression into an AwkPattern instance that
can be used by an AwkMatcher object to perform pattern matching.
- compile(String).
Method in class com.oroinc.text.awk.AwkCompiler
- Same as calling compile(pattern, AwkCompiler.DEFAULT_MASK);
- compile(String, int).
Method in class com.oroinc.text.awk.AwkCompiler
- Compiles an Awk regular expression into an AwkPattern instance that
can be used by an AwkMatcher object to perform pattern matching.
- contains(AwkStreamInput, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if the contents of an AwkStreamInput, starting from the
current offset of the input contains a pattern.
- contains(char[], Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a string (represented as a char[]) contains a pattern.
- contains(PatternMatcherInput, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if the contents of a PatternMatcherInput, starting from the
current offset of the input contains a pattern.
- contains(String, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a string contains a pattern.
- DEFAULT_MASK.
Static variable in class com.oroinc.text.awk.AwkCompiler
-
- endOfStream().
Method in class com.oroinc.text.awk.AwkStreamInput
-
- getMatch().
Method in class com.oroinc.text.awk.AwkMatcher
- Fetches the last match found by a call to a matches() or contains()
method.
- getOptions().
Method in class com.oroinc.text.awk.AwkPattern
- This method returns an integer containing the compilation options used
to compile this pattern.
- getPattern().
Method in class com.oroinc.text.awk.AwkPattern
- This method returns the string representation of the pattern.
- matches(char[], Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a string (represented as a char[]) exactly
matches a given pattern._ If
there is an exact match, a MatchResult instance
representing the match is made accesible via
getMatch() .
- matches(PatternMatcherInput, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if the contents of a PatternMatcherInput instance
exactly matches a given pattern.
- matches(String, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a string exactly matches a given pattern.
- matchesPrefix(char[], Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a prefix of a string (represented as a char[])
matches a given pattern.
- matchesPrefix(char[], Pattern, int).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a prefix of a string (represented as a char[])
matches a given pattern, starting from a given offset into the string.
- matchesPrefix(PatternMatcherInput, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a prefix of a PatternMatcherInput instance
matches a given pattern.
- matchesPrefix(String, Pattern).
Method in class com.oroinc.text.awk.AwkMatcher
- Determines if a prefix of a string matches a given pattern.