public static enum OptInputParameterInfo.Type extends java.lang.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(java.lang.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(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 nullCopyright © 2024. All rights reserved.