| Enum Constant and Description |
|---|
RADIX10
The radix10.
|
RADIX128
The radix128.
|
RADIX16
The radix16.
|
RADIX2
The radix2.
|
RADIX36
The radix10.
|
RADIX62
The radix62.
|
RADIX64
The radix64.
|
RADIX8
The radix8.
|
RADIX93
The radix93.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value()
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 RADIX2
public static final Radix RADIX8
public static final Radix RADIX10
public static final Radix RADIX16
public static final Radix RADIX36
public static final Radix RADIX62
public static final Radix RADIX64
public static final Radix RADIX93
public static final Radix RADIX128
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()