public enum INFRASTRUCTURE extends Enum<INFRASTRUCTURE>
| Enum Constant and Description |
|---|
D4SCIENCE |
EXTERNAL_WPS |
LOCAL |
RAINY_CLOUD |
| Modifier and Type | Method and Description |
|---|---|
static INFRASTRUCTURE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static INFRASTRUCTURE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final INFRASTRUCTURE RAINY_CLOUD
public static final INFRASTRUCTURE D4SCIENCE
public static final INFRASTRUCTURE LOCAL
public static final INFRASTRUCTURE EXTERNAL_WPS
public static INFRASTRUCTURE[] values()
for (INFRASTRUCTURE c : INFRASTRUCTURE.values()) System.out.println(c);
public static INFRASTRUCTURE 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 © 2014. All Rights Reserved.