Enum Symbol.Kind

java.lang.Object
java.lang.Enum<Symbol.Kind>
org.apache.avro.io.parsing.Symbol.Kind
All Implemented Interfaces:
Serializable, Comparable<Symbol.Kind>
Enclosing class:
Symbol

public static enum Symbol.Kind extends Enum<Symbol.Kind>
  • Enum Constant Details

    • TERMINAL

      public static final Symbol.Kind TERMINAL
      terminal symbols which have no productions
    • ROOT

      public static final Symbol.Kind ROOT
      Start symbol for some grammar
    • SEQUENCE

      public static final Symbol.Kind SEQUENCE
      non-terminal symbol which is a sequence of one or more other symbols
    • REPEATER

      public static final Symbol.Kind REPEATER
      non-terminal to represent the contents of an array or map
    • ALTERNATIVE

      public static final Symbol.Kind ALTERNATIVE
      non-terminal to represent the union
    • IMPLICIT_ACTION

      public static final Symbol.Kind IMPLICIT_ACTION
      non-terminal action symbol which are automatically consumed
    • EXPLICIT_ACTION

      public static final Symbol.Kind EXPLICIT_ACTION
      non-terminal action symbol which is explicitly consumed
  • Method Details

    • values

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

      public static Symbol.Kind valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null