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