public static enum BitSequence.BitOrder extends Enum<BitSequence.BitOrder>
Enum Constant and Description |
---|
LSB
Least significant bit first.
|
MSB
Most significant bit first.
|
Modifier and Type | Method and Description |
---|---|
static BitSequence.BitOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitSequence.BitOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitSequence.BitOrder LSB
public static final BitSequence.BitOrder MSB
public static BitSequence.BitOrder[] values()
for (BitSequence.BitOrder c : BitSequence.BitOrder.values()) System.out.println(c);
public static BitSequence.BitOrder 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