public static enum BtrpNumber.Base extends Enum<BtrpNumber.Base>
| Enum Constant and Description |
|---|
BASE_10
Decimal value.
|
BASE_16
Hexadecimal value.
|
BASE_8
Octal value.
|
| Modifier and Type | Method and Description |
|---|---|
static BtrpNumber.Base |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BtrpNumber.Base[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BtrpNumber.Base BASE_8
public static final BtrpNumber.Base BASE_10
public static final BtrpNumber.Base BASE_16
public static BtrpNumber.Base[] values()
for (BtrpNumber.Base c : BtrpNumber.Base.values()) System.out.println(c);
public static BtrpNumber.Base 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 nullCopyright © 2016 University of Nice-Sophia Antipolis. All Rights Reserved.