Enum Class TokKind

java.lang.Object
java.lang.Enum<TokKind>
com.independentsoft.calc.parsing.TokKind
All Implemented Interfaces:
Serializable, Comparable<TokKind>, Constable

public enum TokKind extends Enum<TokKind>
  • Enum Constant Details

    • Number

      public static final TokKind Number
    • String

      public static final TokKind String
    • ErrorLit

      public static final TokKind ErrorLit
    • Ident

      public static final TokKind Ident
    • Quoted

      public static final TokKind Quoted
    • Bracket

      public static final TokKind Bracket
    • Punct

      public static final TokKind Punct
    • End

      public static final TokKind End
  • Method Details

    • values

      public static TokKind[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TokKind valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null