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