public static enum Dataset.Encoding extends java.lang.Enum<Dataset.Encoding>
| Enum Constant and Description |
|---|
Buckwalter |
UTF8 |
| Modifier and Type | Method and Description |
|---|---|
static Dataset.Encoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dataset.Encoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dataset.Encoding Buckwalter
public static final Dataset.Encoding UTF8
public static Dataset.Encoding[] values()
for (Dataset.Encoding c : Dataset.Encoding.values()) System.out.println(c);
public static Dataset.Encoding 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 null