Class HexNumberTokenMatcher
java.lang.Object
com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
com.singularsys.jep.configurableparser.matchers.HexNumberTokenMatcher
- All Implemented Interfaces:
TokenBuilder,TokenMatcher,Serializable
Matches hexadecimal numbers, in the format 0xff.
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.voidInitialize the matcher when the Jep instance is known.Methods inherited from class com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
match
-
Constructor Details
-
HexNumberTokenMatcher
public HexNumberTokenMatcher()
-
-
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
-
init
Description copied from interface:TokenMatcherInitialize the matcher when the Jep instance is known.- Parameters:
jep- Jep instance
-