org.apache.hadoop.hive.serde2.objectinspector
Enum PrimitiveObjectInspector.PrimitiveCategory
java.lang.Object
java.lang.Enum<PrimitiveObjectInspector.PrimitiveCategory>
org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector.PrimitiveCategory
- All Implemented Interfaces:
- Serializable, Comparable<PrimitiveObjectInspector.PrimitiveCategory>
- Enclosing interface:
- PrimitiveObjectInspector
public static enum PrimitiveObjectInspector.PrimitiveCategory
- extends Enum<PrimitiveObjectInspector.PrimitiveCategory>
The primitive types supported by Hive.
VOID
public static final PrimitiveObjectInspector.PrimitiveCategory VOID
BOOLEAN
public static final PrimitiveObjectInspector.PrimitiveCategory BOOLEAN
BYTE
public static final PrimitiveObjectInspector.PrimitiveCategory BYTE
SHORT
public static final PrimitiveObjectInspector.PrimitiveCategory SHORT
INT
public static final PrimitiveObjectInspector.PrimitiveCategory INT
LONG
public static final PrimitiveObjectInspector.PrimitiveCategory LONG
FLOAT
public static final PrimitiveObjectInspector.PrimitiveCategory FLOAT
DOUBLE
public static final PrimitiveObjectInspector.PrimitiveCategory DOUBLE
STRING
public static final PrimitiveObjectInspector.PrimitiveCategory STRING
UNKNOWN
public static final PrimitiveObjectInspector.PrimitiveCategory UNKNOWN
values
public static PrimitiveObjectInspector.PrimitiveCategory[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PrimitiveObjectInspector.PrimitiveCategory c : PrimitiveObjectInspector.PrimitiveCategory.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PrimitiveObjectInspector.PrimitiveCategory 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
Copyright © 2010 The Apache Software Foundation