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