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