public static enum ParametrizedOperation.ValueType extends Enum<ParametrizedOperation.ValueType>
| Modifier and Type | Method and Description |
|---|---|
static ParametrizedOperation.ValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParametrizedOperation.ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParametrizedOperation.ValueType STRING
public static final ParametrizedOperation.ValueType INTEGER
public static final ParametrizedOperation.ValueType FLOAT
public static final ParametrizedOperation.ValueType BOOLEAN
public static ParametrizedOperation.ValueType[] values()
for (ParametrizedOperation.ValueType c : ParametrizedOperation.ValueType.values()) System.out.println(c);
public static ParametrizedOperation.ValueType 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 © 2015. All rights reserved.