org.apache.camel.component.hbase
Enum HbaseAttribute

java.lang.Object
  extended by java.lang.Enum<HbaseAttribute>
      extended by org.apache.camel.component.hbase.HbaseAttribute
All Implemented Interfaces:
Serializable, Comparable<HbaseAttribute>

public enum HbaseAttribute
extends Enum<HbaseAttribute>


Enum Constant Summary
HBASE_FAMILY
           
HBASE_MARKED_ROW_ID
           
HBASE_QUALIFIER
           
HBASE_ROW_ID
           
HBASE_ROW_TYPE
           
HBASE_VALUE
           
HBASE_VALUE_TYPE
           
 
Method Summary
 String asHeader()
           
 String asHeader(int i)
           
 String asOption()
           
 String asOption(int i)
           
 String toString()
           
static HbaseAttribute valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HbaseAttribute[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

HBASE_ROW_ID

public static final HbaseAttribute HBASE_ROW_ID

HBASE_ROW_TYPE

public static final HbaseAttribute HBASE_ROW_TYPE

HBASE_MARKED_ROW_ID

public static final HbaseAttribute HBASE_MARKED_ROW_ID

HBASE_FAMILY

public static final HbaseAttribute HBASE_FAMILY

HBASE_QUALIFIER

public static final HbaseAttribute HBASE_QUALIFIER

HBASE_VALUE

public static final HbaseAttribute HBASE_VALUE

HBASE_VALUE_TYPE

public static final HbaseAttribute HBASE_VALUE_TYPE
Method Detail

values

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

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

valueOf

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

asHeader

public String asHeader(int i)

asHeader

public String asHeader()

asOption

public String asOption()

asOption

public String asOption(int i)

toString

public String toString()
Overrides:
toString in class Enum<HbaseAttribute>


Apache CAMEL