org.apache.hadoop.hive.serde2.objectinspector
Enum PrimitiveObjectInspector.PrimitiveCategory

java.lang.Object
  extended by java.lang.Enum<PrimitiveObjectInspector.PrimitiveCategory>
      extended by 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.


Enum Constant Summary
BOOLEAN
           
BYTE
           
DOUBLE
           
FLOAT
           
INT
           
LONG
           
SHORT
           
STRING
           
UNKNOWN
           
VOID
           
 
Method Summary
static PrimitiveObjectInspector.PrimitiveCategory valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PrimitiveObjectInspector.PrimitiveCategory[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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 © 2011 The Apache Software Foundation