public enum OriginalType extends Enum<OriginalType>
Enum Constant and Description |
---|
DECIMAL |
ENUM |
LIST |
MAP |
MAP_KEY_VALUE |
UTF8 |
Modifier and Type | Method and Description |
---|---|
static OriginalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OriginalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OriginalType MAP
public static final OriginalType LIST
public static final OriginalType UTF8
public static final OriginalType MAP_KEY_VALUE
public static final OriginalType ENUM
public static final OriginalType DECIMAL
public static OriginalType[] values()
for (OriginalType c : OriginalType.values()) System.out.println(c);
public static OriginalType 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 nullCopyright © 2015. All rights reserved.