Enum DruidType

java.lang.Object
java.lang.Enum<DruidType>
org.apache.calcite.adapter.druid.DruidType
All Implemented Interfaces:
Serializable, Comparable<DruidType>, Constable

public enum DruidType extends Enum<DruidType>
Druid type.
  • Enum Constant Details

    • LONG

      public static final DruidType LONG
    • FLOAT

      public static final DruidType FLOAT
    • DOUBLE

      public static final DruidType DOUBLE
    • STRING

      public static final DruidType STRING
    • COMPLEX

      public static final DruidType COMPLEX
    • HYPER_UNIQUE

      public static final DruidType HYPER_UNIQUE
    • THETA_SKETCH

      public static final DruidType THETA_SKETCH
  • Field Details

    • sqlType

      public final SqlTypeName sqlType
      The corresponding SQL type.
  • Method Details

    • values

      public static DruidType[] 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 DruidType 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
    • isComplex

      public boolean isComplex()
      Returns whether this type should be used inside a ComplexMetric.