public static enum FileHeader.Endianess extends java.lang.Enum<FileHeader.Endianess>
Enum Constant and Description |
---|
BIG_ENDIAN |
LITTLE_ENDIAN |
Modifier and Type | Method and Description |
---|---|
static FileHeader.Endianess |
decode(int code) |
static FileHeader.Endianess |
from(java.nio.ByteOrder byteOrder) |
static FileHeader.Endianess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileHeader.Endianess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileHeader.Endianess LITTLE_ENDIAN
public static final FileHeader.Endianess BIG_ENDIAN
public static FileHeader.Endianess[] values()
for (FileHeader.Endianess c : FileHeader.Endianess.values()) System.out.println(c);
public static FileHeader.Endianess 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 nullpublic static FileHeader.Endianess decode(int code)
public static FileHeader.Endianess from(java.nio.ByteOrder byteOrder)