Class HexNumberTokenMatcher

java.lang.Object
com.singularsys.jep.configurableparser.matchers.RegExpTokenMatcher
com.singularsys.jep.configurableparser.matchers.HexNumberTokenMatcher
All Implemented Interfaces:
TokenBuilder, TokenMatcher, Serializable

public class HexNumberTokenMatcher extends RegExpTokenMatcher
Matches hexadecimal numbers, in the format 0xff. The jep NumberFactory is used to create the number.
See Also:
  • Constructor Details

    • HexNumberTokenMatcher

      public HexNumberTokenMatcher()
  • Method Details

    • buildToken

      public Token buildToken(String s) throws ParseException
      Description copied from class: RegExpTokenMatcher
      Builds 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:
      buildToken in interface TokenBuilder
      Specified by:
      buildToken in class RegExpTokenMatcher
      Parameters:
      s - String representing the completed matched token
      Returns:
      the appropriate type of token.
      Throws:
      ParseException
    • init

      public void init(Jep jep)
      Description copied from interface: TokenMatcher
      Initialize the matcher when the Jep instance is known.
      Parameters:
      jep - Jep instance