Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A B C D E G L M N O P Q R S T _

A

AwkCompiler - class org.apache.oro.text.awk.AwkCompiler.
The AwkCompiler class is used to create compiled regular expressions conforming to the Awk regular expression syntax.
AwkCompiler() - Constructor for class org.apache.oro.text.awk.AwkCompiler
 
AwkMatchResult - class org.apache.oro.text.awk.AwkMatchResult.
A class used to store and access the results of an AwkPattern match.
AwkMatchResult(String, int) - Constructor for class org.apache.oro.text.awk.AwkMatchResult
Default constructor given default access to prevent instantiation outside the package.
AwkMatcher - class org.apache.oro.text.awk.AwkMatcher.
The AwkMatcher class is used to match regular expressions (conforming to the Awk regular expression syntax) generated by AwkCompiler.
AwkMatcher() - Constructor for class org.apache.oro.text.awk.AwkMatcher
 
AwkPattern - class org.apache.oro.text.awk.AwkPattern.
An implementation of the Pattern interface for Awk regular expressions.
AwkPattern(String, SyntaxTree) - Constructor for class org.apache.oro.text.awk.AwkPattern
 
AwkStreamInput - class org.apache.oro.text.awk.AwkStreamInput.
The AwkStreamInput class is used to look for pattern matches in an input stream (actually a java.io.Reader instance) in conjunction with the AwkMatcher class.
AwkStreamInput() - Constructor for class org.apache.oro.text.awk.AwkStreamInput
We use this default contructor only within the package to create a dummy AwkStreamInput instance.
AwkStreamInput(Reader, int) - Constructor for class org.apache.oro.text.awk.AwkStreamInput
Creates an AwkStreamInput instance bound to a Reader with a specified initial buffer size and default buffer increment.
AwkStreamInput(Reader) - Constructor for class org.apache.oro.text.awk.AwkStreamInput
Creates an AwkStreamInput instance bound to a Reader with an initial buffer size and default buffer increment of 2048 bytes.

B

begin(int) - Method in class org.apache.oro.text.awk.AwkMatchResult
 
beginOffset(int) - Method in class org.apache.oro.text.awk.AwkMatchResult
Returns an offset marking the beginning of the pattern match relative to the beginning of the input.

C

CASE_INSENSITIVE_MASK - Static variable in class org.apache.oro.text.awk.AwkCompiler
A mask passed as an option to the compile 55 methods to indicate a compiled regular expression should be case insensitive.
CatNode - class org.apache.oro.text.awk.CatNode.
 
CatNode() - Constructor for class org.apache.oro.text.awk.CatNode
 
CharacterClassNode - class org.apache.oro.text.awk.CharacterClassNode.
 
CharacterClassNode(int) - Constructor for class org.apache.oro.text.awk.CharacterClassNode
 
compile(char[], int) - Method in class org.apache.oro.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, int) - Method in class org.apache.oro.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(char[]) - Method in class org.apache.oro.text.awk.AwkCompiler
Same as calling compile(pattern, AwkCompiler.DEFAULT_MASK);
compile(String) - Method in class org.apache.oro.text.awk.AwkCompiler
Same as calling compile(pattern, AwkCompiler.DEFAULT_MASK);
contains(char[], Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a string (represented as a char[]) contains a pattern.
contains(String, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a string contains a pattern.
contains(PatternMatcherInput, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.
contains(AwkStreamInput, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if the contents of an AwkStreamInput, starting from the current offset of the input contains a pattern.
createFastMap() - Method in class org.apache.oro.text.awk.SyntaxTree
 

D

DEFAULT_MASK - Static variable in class org.apache.oro.text.awk.AwkCompiler
The default mask for the compile 55 methods.
DFAState - class org.apache.oro.text.awk.DFAState.
 
DFAState(BitSet, int) - Constructor for class org.apache.oro.text.awk.DFAState
 

E

EpsilonNode - class org.apache.oro.text.awk.EpsilonNode.
 
EpsilonNode() - Constructor for class org.apache.oro.text.awk.EpsilonNode
 
end(int) - Method in class org.apache.oro.text.awk.AwkMatchResult
 
endOfStream() - Method in class org.apache.oro.text.awk.AwkStreamInput
 
endOffset(int) - Method in class org.apache.oro.text.awk.AwkMatchResult
Returns an offset marking the end of the pattern match relative to the beginning of the input.

G

getMatch() - Method in class org.apache.oro.text.awk.AwkMatcher
Fetches the last match found by a call to a matches() or contains() method.
getOptions() - Method in class org.apache.oro.text.awk.AwkPattern
This method returns an integer containing the compilation options used to compile this pattern.
getPattern() - Method in class org.apache.oro.text.awk.AwkPattern
This method returns the string representation of the pattern.
group(int) - Method in class org.apache.oro.text.awk.AwkMatchResult
 
groups() - Method in class org.apache.oro.text.awk.AwkMatchResult
 

L

LeafNode - class org.apache.oro.text.awk.LeafNode.
 
LeafNode(int) - Constructor for class org.apache.oro.text.awk.LeafNode
 
length() - Method in class org.apache.oro.text.awk.AwkMatchResult
 

M

MULTILINE_MASK - Static variable in class org.apache.oro.text.awk.AwkCompiler
A mask passed as an option to the compile 55 methods to indicate a compiled regular expression should treat input as having multiple lines.
matches(char[], Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a string (represented as a char[]) exactly matches a given pattern.
matches(String, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a string exactly matches a given pattern.
matches(PatternMatcherInput, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.
matchesPrefix(char[], Pattern, int) - Method in class org.apache.oro.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(char[], Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern.
matchesPrefix(String, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a string matches a given pattern.
matchesPrefix(PatternMatcherInput, Pattern) - Method in class org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.

N

NegativeCharacterClassNode - class org.apache.oro.text.awk.NegativeCharacterClassNode.
 
NegativeCharacterClassNode(int) - Constructor for class org.apache.oro.text.awk.NegativeCharacterClassNode
 

O

OrNode - class org.apache.oro.text.awk.OrNode.
 
OrNode(SyntaxNode, SyntaxNode) - Constructor for class org.apache.oro.text.awk.OrNode
 
org.apache.oro.text.awk - package org.apache.oro.text.awk
 

P

PlusNode - class org.apache.oro.text.awk.PlusNode.
 
PlusNode(SyntaxNode) - Constructor for class org.apache.oro.text.awk.PlusNode
 

Q

QuestionNode - class org.apache.oro.text.awk.QuestionNode.
 
QuestionNode(SyntaxNode) - Constructor for class org.apache.oro.text.awk.QuestionNode
 

R

read() - Method in class org.apache.oro.text.awk.AwkStreamInput
 

S

StarNode - class org.apache.oro.text.awk.StarNode.
 
StarNode(SyntaxNode) - Constructor for class org.apache.oro.text.awk.StarNode
 
SyntaxNode - class org.apache.oro.text.awk.SyntaxNode.
 
SyntaxNode() - Constructor for class org.apache.oro.text.awk.SyntaxNode
 
SyntaxTree - class org.apache.oro.text.awk.SyntaxTree.
 
SyntaxTree(SyntaxNode, int) - Constructor for class org.apache.oro.text.awk.SyntaxTree
 

T

TokenNode - class org.apache.oro.text.awk.TokenNode.
 
TokenNode(char, int) - Constructor for class org.apache.oro.text.awk.TokenNode
 
toString() - Method in class org.apache.oro.text.awk.AwkMatchResult
The same as group(0).

_

_DEFAULT_BUFFER_INCREMENT - Static variable in class org.apache.oro.text.awk.AwkStreamInput
 
_Dtrans - Variable in class org.apache.oro.text.awk.AwkPattern
 
_END_MARKER_TOKEN - Static variable in class org.apache.oro.text.awk.LeafNode
 
_END_OF_INPUT - Static variable in class org.apache.oro.text.awk.AwkCompiler
 
_INVALID_STATE - Static variable in class org.apache.oro.text.awk.AwkPattern
 
_NUM_TOKENS - Static variable in class org.apache.oro.text.awk.LeafNode
 
_START_STATE - Static variable in class org.apache.oro.text.awk.AwkPattern
 
_U - Variable in class org.apache.oro.text.awk.AwkPattern
 
__addToFastMap(BitSet, boolean[], boolean[]) - Method in class org.apache.oro.text.awk.SyntaxTree
 
__atom() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__awkPattern - Variable in class org.apache.oro.text.awk.AwkMatcher
 
__backslashToken() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__beginAnchor - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__beginOffset - Variable in class org.apache.oro.text.awk.AwkMatcher
A kluge variable to make PatternMatcherInput matches work when their begin offset is non-zero.
__branch() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__bufferIncrementUnit - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
__bytesRead - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__caseSensitive - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__characterClass() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__closeParen - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__endAnchor - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__expressionLength - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__inCharacterClass - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__isMetachar(char) - Static method in class org.apache.oro.text.awk.AwkCompiler
 
__lastMatchResult - Variable in class org.apache.oro.text.awk.AwkMatcher
 
__lastMatchedBufferOffset - Variable in class org.apache.oro.text.awk.AwkMatcher
 
__length - Variable in class org.apache.oro.text.awk.AwkMatchResult
The length of the match.
__lookahead - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__match(char) - Method in class org.apache.oro.text.awk.AwkCompiler
 
__match - Variable in class org.apache.oro.text.awk.AwkMatchResult
The entire string that matched the pattern.
__matchBeginOffset - Variable in class org.apache.oro.text.awk.AwkMatchResult
The character offset into the line or stream where the match begins.
__multiline - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__offsets - Variable in class org.apache.oro.text.awk.AwkMatcher
 
__openParen - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__parseUnsignedInteger(int, int, int) - Method in class org.apache.oro.text.awk.AwkCompiler
 
__piece() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__position - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__putback() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__regex() - Method in class org.apache.oro.text.awk.AwkCompiler
 
__regularExpression - Variable in class org.apache.oro.text.awk.AwkCompiler
 
__repetition(SyntaxNode) - Method in class org.apache.oro.text.awk.AwkCompiler
 
__scratchBuffer - Variable in class org.apache.oro.text.awk.AwkMatcher
 
__searchStream - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
__streamMatchPrefix() - Method in class org.apache.oro.text.awk.AwkMatcher
 
__streamSearchBuffer - Variable in class org.apache.oro.text.awk.AwkMatcher
 
_addToken(int) - Method in class org.apache.oro.text.awk.CharacterClassNode
 
_addTokenRange(int, int) - Method in class org.apache.oro.text.awk.CharacterClassNode
 
_buffer - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
_bufferOffset - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
_bufferSize - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
_characterSet - Variable in class org.apache.oro.text.awk.CharacterClassNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.CatNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.CharacterClassNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.EpsilonNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.NegativeCharacterClassNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.OrNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.PlusNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.QuestionNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.StarNode
 
_clone(int[]) - Method in class org.apache.oro.text.awk.SyntaxNode
This method is designed specifically to accommodate the expansion of an interval into its subparts.
_clone(int[]) - Method in class org.apache.oro.text.awk.TokenNode
 
_computeFollowPositions() - Method in class org.apache.oro.text.awk.SyntaxTree
 
_createNewState(int, int, int[]) - Method in class org.apache.oro.text.awk.AwkPattern
 
_currentOffset - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
_emptySet - Variable in class org.apache.oro.text.awk.AwkPattern
 
_endOfStreamReached - Variable in class org.apache.oro.text.awk.AwkStreamInput
 
_endPosition - Variable in class org.apache.oro.text.awk.AwkPattern
 
_endStates - Variable in class org.apache.oro.text.awk.AwkPattern
 
_epsilon - Static variable in class org.apache.oro.text.awk.QuestionNode
 
_expression - Variable in class org.apache.oro.text.awk.AwkPattern
 
_fastMap - Variable in class org.apache.oro.text.awk.AwkPattern
 
_firstPosition() - Method in class org.apache.oro.text.awk.CatNode
 
_firstPosition() - Method in class org.apache.oro.text.awk.EpsilonNode
 
_firstPosition() - Method in class org.apache.oro.text.awk.LeafNode
 
_firstPosition() - Method in class org.apache.oro.text.awk.OrNode
 
_firstPosition() - Method in class org.apache.oro.text.awk.StarNode
 
_firstPosition() - Method in class org.apache.oro.text.awk.SyntaxNode
 
_followPosition(BitSet[], SyntaxNode[]) - Method in class org.apache.oro.text.awk.CatNode
 
_followPosition(BitSet[], SyntaxNode[]) - Method in class org.apache.oro.text.awk.EpsilonNode
 
_followPosition(BitSet[], SyntaxNode[]) - Method in class org.apache.oro.text.awk.LeafNode
 
_followPosition(BitSet[], SyntaxNode[]) - Method in class org.apache.oro.text.awk.OrNode
 
_followPosition(BitSet[], SyntaxNode[]) - Method in class org.apache.oro.text.awk.StarNode
 
_followPosition(BitSet[], SyntaxNode[]) - Method in class org.apache.oro.text.awk.SyntaxNode
 
_followSet - Variable in class org.apache.oro.text.awk.AwkPattern
 
_followSet - Variable in class org.apache.oro.text.awk.SyntaxTree
 
_getStateArray(int) - Method in class org.apache.oro.text.awk.AwkPattern
 
_hasBeginAnchor - Variable in class org.apache.oro.text.awk.AwkPattern
 
_hasEndAnchor - Variable in class org.apache.oro.text.awk.AwkPattern
 
_incrementMatchBeginOffset(int) - Method in class org.apache.oro.text.awk.AwkMatchResult
Adjusts the relative offset where the match begins to an absolute value.
_isLowerCase(char) - Static method in class org.apache.oro.text.awk.AwkCompiler
 
_isUpperCase(char) - Static method in class org.apache.oro.text.awk.AwkCompiler
 
_isWordCharacter(char) - Static method in class org.apache.oro.text.awk.AwkCompiler
 
_lastPosition() - Method in class org.apache.oro.text.awk.CatNode
 
_lastPosition() - Method in class org.apache.oro.text.awk.EpsilonNode
 
_lastPosition() - Method in class org.apache.oro.text.awk.LeafNode
 
_lastPosition() - Method in class org.apache.oro.text.awk.OrNode
 
_lastPosition() - Method in class org.apache.oro.text.awk.StarNode
 
_lastPosition() - Method in class org.apache.oro.text.awk.SyntaxNode
 
_left - Variable in class org.apache.oro.text.awk.CatNode
 
_left - Variable in class org.apache.oro.text.awk.OrNode
 
_left - Variable in class org.apache.oro.text.awk.StarNode
 
_matches(char) - Method in class org.apache.oro.text.awk.CharacterClassNode
 
_matches(char) - Method in class org.apache.oro.text.awk.LeafNode
 
_matches(char) - Method in class org.apache.oro.text.awk.NegativeCharacterClassNode
 
_matches(char) - Method in class org.apache.oro.text.awk.TokenNode
 
_matchesNullString - Variable in class org.apache.oro.text.awk.AwkPattern
 
_newTokenNode(char, int) - Method in class org.apache.oro.text.awk.AwkCompiler
 
_nodeList - Variable in class org.apache.oro.text.awk.AwkPattern
 
_nodes - Variable in class org.apache.oro.text.awk.SyntaxTree
 
_nullable() - Method in class org.apache.oro.text.awk.CatNode
 
_nullable() - Method in class org.apache.oro.text.awk.EpsilonNode
 
_nullable() - Method in class org.apache.oro.text.awk.LeafNode
 
_nullable() - Method in class org.apache.oro.text.awk.OrNode
 
_nullable() - Method in class org.apache.oro.text.awk.PlusNode
 
_nullable() - Method in class org.apache.oro.text.awk.QuestionNode
 
_nullable() - Method in class org.apache.oro.text.awk.StarNode
 
_nullable() - Method in class org.apache.oro.text.awk.SyntaxNode
 
_numStates - Variable in class org.apache.oro.text.awk.AwkPattern
 
_options - Variable in class org.apache.oro.text.awk.AwkPattern
 
_parse(char[]) - Method in class org.apache.oro.text.awk.AwkCompiler
 
_position - Variable in class org.apache.oro.text.awk.LeafNode
 
_positionSet - Variable in class org.apache.oro.text.awk.EpsilonNode
 
_positionSet - Variable in class org.apache.oro.text.awk.LeafNode
 
_positions - Variable in class org.apache.oro.text.awk.SyntaxTree
 
_reallocate(int) - Method in class org.apache.oro.text.awk.AwkStreamInput
 
_right - Variable in class org.apache.oro.text.awk.CatNode
 
_right - Variable in class org.apache.oro.text.awk.OrNode
 
_root - Variable in class org.apache.oro.text.awk.SyntaxTree
 
_search() - Method in class org.apache.oro.text.awk.AwkMatcher
 
_state - Variable in class org.apache.oro.text.awk.DFAState
 
_stateList - Variable in class org.apache.oro.text.awk.AwkPattern
 
_stateMap - Variable in class org.apache.oro.text.awk.AwkPattern
 
_stateNumber - Variable in class org.apache.oro.text.awk.DFAState
 
_toggleCase(char) - Static method in class org.apache.oro.text.awk.AwkCompiler
 
_token - Variable in class org.apache.oro.text.awk.TokenNode
 

A B C D E G L M N O P Q R S T _