Enum Class EType

Object
Enum<EType>
EType
All Implemented Interfaces:
Serializable, Comparable<EType>, Constable

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

    • NUMBER

      public static final EType NUMBER
    • INTEGER

      public static final EType INTEGER
    • FLOAT

      public static final EType FLOAT
    • DOUBLE

      public static final EType DOUBLE
    • STRING

      public static final EType STRING
    • ARRAY

      public static final EType ARRAY
    • RANGE

      public static final EType RANGE
    • OBJECT

      public static final EType OBJECT
    • BOOLEAN

      public static final EType BOOLEAN
    • DATETIME

      public static final EType DATETIME
    • DATE

      public static final EType DATE
    • TIME

      public static final EType TIME
    • PRIMITIVE

      public static final EType PRIMITIVE
    • COMPOSITE

      public static final EType COMPOSITE
    • ANY

      public static final EType ANY
    • NULL

      public static final EType NULL
    • UNDEFINED

      public static final EType UNDEFINED
    • VOID

      public static final EType VOID
  • Method Details

    • values

      public static EType[] 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 EType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EType>
    • getName

      public String getName()