protected static enum ChapMenuItems.ConversionType extends java.lang.Enum<ChapMenuItems.ConversionType>
Enum Constant and Description |
---|
CENTIGRADE_FAHRENHEIT
Convert between Centigrade and Fahrenheit.
|
CROSS_MULTIPLY
Cross-multiply to find an unknown quantity.
|
HorDMS_HRSorDEGS
Convert HMS to/from hours or convert DMS to/from degrees.
|
Modifier and Type | Method and Description |
---|---|
static ChapMenuItems.ConversionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChapMenuItems.ConversionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChapMenuItems.ConversionType CROSS_MULTIPLY
public static final ChapMenuItems.ConversionType HorDMS_HRSorDEGS
public static final ChapMenuItems.ConversionType CENTIGRADE_FAHRENHEIT
public static ChapMenuItems.ConversionType[] values()
for (ChapMenuItems.ConversionType c : ChapMenuItems.ConversionType.values()) System.out.println(c);
public static ChapMenuItems.ConversionType 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