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