Enum PigDataType

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

public enum PigDataType extends Enum<PigDataType>
Supported Pig data types and their Calcite counterparts.
  • Enum Constant Details

    • CHARARRAY

      public static final PigDataType CHARARRAY
  • Method Details

    • values

      public static PigDataType[] 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 PigDataType 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
    • getPigType

      public byte getPigType()
    • getSqlType

      public SqlTypeName getSqlType()
    • valueOf

      public static PigDataType valueOf(byte pigType)
      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:
      pigType - 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
    • valueOf

      public static PigDataType valueOf(SqlTypeName sqlType)
      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:
      sqlType - 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