public static enum InputParameterInfo.Type extends Enum<InputParameterInfo.Type>
Enum Constant and Description |
---|
BAR
Indicates that this input is IBar array
|
DOUBLE
Indicates that this input is any double data.
|
PRICE
Indicates that this input is price.
|
Modifier and Type | Method and Description |
---|---|
static InputParameterInfo.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputParameterInfo.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputParameterInfo.Type PRICE
public static final InputParameterInfo.Type DOUBLE
public static final InputParameterInfo.Type BAR
public static InputParameterInfo.Type[] values()
for (InputParameterInfo.Type c : InputParameterInfo.Type.values()) System.out.println(c);
public static InputParameterInfo.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.