Enum Class Token.Type

java.lang.Object
java.lang.Enum<Token.Type>
org.cytoscape.equations.Token.Type
All Implemented Interfaces:
Serializable, Comparable<Token.Type>, java.lang.constant.Constable
Enclosing class:
Token

public static enum Token.Type extends Enum<Token.Type>
  • Enum Constant Details

    • STRING_CONSTANT

      public static final Token.Type STRING_CONSTANT
    • FLOAT_CONSTANT

      public static final Token.Type FLOAT_CONSTANT
    • BOOLEAN_CONSTANT

      public static final Token.Type BOOLEAN_CONSTANT
    • IDENTIFIER

      public static final Token.Type IDENTIFIER
    • OPEN_BRACE

      public static final Token.Type OPEN_BRACE
    • CLOSE_BRACE

      public static final Token.Type CLOSE_BRACE
    • OPEN_PAREN

      public static final Token.Type OPEN_PAREN
    • CLOSE_PAREN

      public static final Token.Type CLOSE_PAREN
    • COLON

      public static final Token.Type COLON
    • CARET

      public static final Token.Type CARET
    • PLUS

      public static final Token.Type PLUS
    • MINUS

      public static final Token.Type MINUS
    • DIV

      public static final Token.Type DIV
    • MUL

      public static final Token.Type MUL
    • EQUAL

      public static final Token.Type EQUAL
    • NOT_EQUAL

      public static final Token.Type NOT_EQUAL
    • GREATER_THAN

      public static final Token.Type GREATER_THAN
    • LESS_THAN

      public static final Token.Type LESS_THAN
    • GREATER_OR_EQUAL

      public static final Token.Type GREATER_OR_EQUAL
    • LESS_OR_EQUAL

      public static final Token.Type LESS_OR_EQUAL
    • DOLLAR

      public static final Token.Type DOLLAR
    • COMMA

      public static final Token.Type COMMA
    • AMPERSAND

      public static final Token.Type AMPERSAND
    • EOS

      public static final Token.Type EOS
    • ERROR

      public static final Token.Type ERROR
  • Method Details

    • values

      public static Token.Type[] 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 Token.Type 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