Enum Constant and Description |
---|
BIN
Radix for binary data.
|
DEC
Radix for decimal data.
|
HEX
Radix for hexadecimal data.
|
Modifier and Type | Method and Description |
---|---|
int |
value() |
static Radix |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Radix[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Radix BIN
public static final Radix DEC
public static final Radix HEX
public static Radix[] values()
for (Radix c : Radix.values()) System.out.println(c);
public static Radix 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 int value()