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