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