public static enum OptInputParameterInfo.Type extends Enum<OptInputParameterInfo.Type>
Enum Constant and Description |
---|
CURRENCY
Optional input is currency
|
DEGREE
Optional input is degree
|
OTHER
Optional input is something other
|
PERCENT
Optional input is percent
|
Modifier and Type | Method and Description |
---|---|
static OptInputParameterInfo.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptInputParameterInfo.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptInputParameterInfo.Type PERCENT
public static final OptInputParameterInfo.Type DEGREE
public static final OptInputParameterInfo.Type CURRENCY
public static final OptInputParameterInfo.Type OTHER
public static OptInputParameterInfo.Type[] values()
for (OptInputParameterInfo.Type c : OptInputParameterInfo.Type.values()) System.out.println(c);
public static OptInputParameterInfo.Type 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. All rights reserved.