Enum Type

java.lang.Object
java.lang.Enum<Type>
org.apache.iotdb.pipe.api.type.Type
All Implemented Interfaces:
Serializable, Comparable<Type>

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

    • BOOLEAN

      public static final Type BOOLEAN
    • INT32

      public static final Type INT32
    • INT64

      public static final Type INT64
    • FLOAT

      public static final Type FLOAT
    • DOUBLE

      public static final Type DOUBLE
    • TEXT

      public static final Type TEXT
    • TIMESTAMP

      public static final Type TIMESTAMP
    • DATE

      public static final Type DATE
    • BLOB

      public static final Type BLOB
    • STRING

      public static final Type STRING
  • Method Details

    • values

      public static Type[] 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 Type 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
    • getType

      public byte getType()