Class WhiteSpaceTokenMatcher
java.lang.Object
com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
com.singularsys.jep.configurableparser.matchers.WhiteSpaceTokenMatcher
- All Implemented Interfaces:
TokenBuilder,TokenMatcher,Serializable
Matches whitespace.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWhiteSpaceTokenMatcher(Pattern pattern) WhiteSpaceTokenMatcher(String regex) -
Method Summary
Modifier and TypeMethodDescriptionbuildToken(String s) Builds a token following a successful match.static WhiteSpaceTokenMatcherMatchesvoidInitialize the matcher when the Jep instance is known.Methods inherited from class com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
match
-
Constructor Details
-
WhiteSpaceTokenMatcher
-
WhiteSpaceTokenMatcher
-
-
Method Details
-
buildToken
Description copied from class:RegExpTokenMatcherBuilds a token following a successful match. Note new objects should be created each time as error reporting information is later attached to tokens.- Specified by:
buildTokenin interfaceTokenBuilder- Specified by:
buildTokenin classRegExpTokenMatcher- Parameters:
s- String representing the completed matched token- Returns:
- the appropriate type of token.
-
defaultWhiteSpaceTokenMatcher
Matches- Returns:
- a new TokenMatcher for white space tokens
-
init
Description copied from interface:TokenMatcherInitialize the matcher when the Jep instance is known.- Parameters:
j- Jep instance
-