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