public enum SuperColumnType extends Enum<SuperColumnType>
| Enum Constant and Description |
|---|
BINARY_TYPE |
BOOLEAN_TYPE |
LITERAL_TYPE |
NUMBER_TYPE |
OTHER_TYPE |
TIME_TYPE |
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
getJavaEquivalentClass() |
static SuperColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuperColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuperColumnType BOOLEAN_TYPE
public static final SuperColumnType LITERAL_TYPE
public static final SuperColumnType NUMBER_TYPE
public static final SuperColumnType TIME_TYPE
public static final SuperColumnType BINARY_TYPE
public static final SuperColumnType OTHER_TYPE
public static SuperColumnType[] values()
for (SuperColumnType c : SuperColumnType.values()) System.out.println(c);
public static SuperColumnType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic Class<?> getJavaEquivalentClass()
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.