org.apache.hadoop.hbase.hbql.mapping
Enum FieldType

java.lang.Object
  extended by java.lang.Enum<FieldType>
      extended by org.apache.hadoop.hbase.hbql.mapping.FieldType
All Implemented Interfaces:
Serializable, Comparable<FieldType>

public enum FieldType
extends Enum<FieldType>
implements Serializable


Enum Constant Summary
BooleanType
           
ByteType
           
CharType
           
DateType
           
DoubleType
           
FloatType
           
IntegerType
           
KeyType
           
LongType
           
ObjectType
           
ShortType
           
StringType
           
 
Method Summary
 Class getComponentType()
           
 Class<? extends GenericValue> getExprType()
           
static FieldType getFieldType(Class fieldClass)
           
static FieldType getFieldType(Field field)
           
static FieldType getFieldType(Object obj)
           
static FieldType getFieldType(String desc)
           
 String getFirstSynonym()
           
 int getSize()
           
 int getTypeRanking()
           
static FieldType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FieldType[] 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

KeyType

public static final FieldType KeyType

BooleanType

public static final FieldType BooleanType

ByteType

public static final FieldType ByteType

CharType

public static final FieldType CharType

ShortType

public static final FieldType ShortType

IntegerType

public static final FieldType IntegerType

LongType

public static final FieldType LongType

FloatType

public static final FieldType FloatType

DoubleType

public static final FieldType DoubleType

StringType

public static final FieldType StringType

DateType

public static final FieldType DateType

ObjectType

public static final FieldType ObjectType
Method Detail

values

public static FieldType[] 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 (FieldType c : FieldType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FieldType 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

getComponentType

public Class getComponentType()

getTypeRanking

public int getTypeRanking()

getSize

public int getSize()

getExprType

public Class<? extends GenericValue> getExprType()

getFieldType

public static FieldType getFieldType(Object obj)

getFieldType

public static FieldType getFieldType(Field field)

getFirstSynonym

public String getFirstSynonym()

getFieldType

public static FieldType getFieldType(Class fieldClass)

getFieldType

public static FieldType getFieldType(String desc)
                              throws HBqlException
Throws:
HBqlException


Copyright © 2011. All Rights Reserved.