public enum ExecutionEnvironmentField extends java.lang.Enum<ExecutionEnvironmentField>
Enum Constant and Description |
---|
MAX_NUM_THREADS |
NUM_THREADS_PER_TASK |
PRIORITY |
WEIGHT |
Modifier and Type | Method and Description |
---|---|
void |
checkType(java.lang.Object o) |
ConfigField |
getField() |
<T extends ConfigField> |
getField(java.lang.Class<T> expectedClass) |
java.lang.Class<?> |
getType() |
static ExecutionEnvironmentField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionEnvironmentField[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
void |
verify(java.lang.Object value) |
public static final ExecutionEnvironmentField MAX_NUM_THREADS
public static final ExecutionEnvironmentField NUM_THREADS_PER_TASK
public static final ExecutionEnvironmentField PRIORITY
public static final ExecutionEnvironmentField WEIGHT
public void checkType(java.lang.Object o)
public ConfigField getField()
public <T extends ConfigField> T getField(java.lang.Class<T> expectedClass)
public java.lang.Class<?> getType()
public static ExecutionEnvironmentField 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 nullpublic static ExecutionEnvironmentField[] values()
for (ExecutionEnvironmentField c : ExecutionEnvironmentField.values()) System.out.println(c);
public void verify(java.lang.Object value)
Copyright © 2017 Oracle Corp. All Rights Reserved.