Package org.apache.camel.component.hbase
Enum HBaseAttribute
- java.lang.Object
-
- java.lang.Enum<HBaseAttribute>
-
- org.apache.camel.component.hbase.HBaseAttribute
-
- All Implemented Interfaces:
Serializable,Comparable<HBaseAttribute>
public enum HBaseAttribute extends Enum<HBaseAttribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HBASE_FAMILYHBASE_MARKED_ROW_IDHBASE_QUALIFIERHBASE_ROW_IDHBASE_ROW_TYPEHBASE_VALUEHBASE_VALUE_TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringasHeader()StringasHeader(int i)StringasOption()StringasOption(int i)StringtoString()static HBaseAttributevalueOf(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.
-
-
-
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 nameNullPointerException- 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:
toStringin classEnum<HBaseAttribute>
-
-