Class NumberTokenMatcher
java.lang.Object
com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
com.singularsys.jep.configurableparser.matchers.NumberTokenMatcher
- All Implemented Interfaces:
TokenBuilder,TokenMatcher,Serializable
Matches numbers.
The jep NumberFactory is used to create the number.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuildToken(String s) Builds a token following a successful match.static NumberTokenMatcherFactory to create a matcher for decimal number without exponentsstatic NumberTokenMatcherFactory to create a matcher for decimal number with or without exponentsvoidInitialize the matcher when the Jep instance is known.Methods inherited from class com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
match
-
Constructor Details
-
NumberTokenMatcher
-
NumberTokenMatcher
-
-
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.
- Throws:
ParseException
-
defaultNumberTokenMatcher
Factory to create a matcher for decimal number without exponents- Returns:
- the matcher
-
exponentNumberTokenMatcher
Factory to create a matcher for decimal number with or without exponents- Returns:
- the matcher
-
init
Description copied from interface:TokenMatcherInitialize the matcher when the Jep instance is known.- Parameters:
jep- Jep instance
-