public static enum PieExtra.MODE extends java.lang.Enum<PieExtra.MODE>
Enum Constant and Description |
---|
DEGREES |
PERCENTAGES |
QUANTITIES |
RADIANS |
Modifier and Type | Method and Description |
---|---|
static PieExtra.MODE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PieExtra.MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PieExtra.MODE QUANTITIES
public static final PieExtra.MODE PERCENTAGES
public static final PieExtra.MODE DEGREES
public static final PieExtra.MODE RADIANS
public static PieExtra.MODE[] values()
for (PieExtra.MODE c : PieExtra.MODE.values()) System.out.println(c);
public static PieExtra.MODE 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 null