public enum EncodingType extends java.lang.Enum<EncodingType>
| Enum Constant and Description |
|---|
CL100K_BASE |
P50K_BASE |
P50K_EDIT |
R50K_BASE |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Optional<EncodingType> |
fromName(java.lang.String name) |
java.lang.String |
getName() |
static EncodingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncodingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodingType R50K_BASE
public static final EncodingType P50K_BASE
public static final EncodingType P50K_EDIT
public static final EncodingType CL100K_BASE
public static EncodingType[] values()
for (EncodingType c : EncodingType.values()) System.out.println(c);
public static EncodingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()
public static java.util.Optional<EncodingType> fromName(java.lang.String name)