public enum AutoUserScope extends Enum<AutoUserScope>
Enum Constant and Description |
---|
POOL
Enum value pool.
|
TASK
Enum value task.
|
Modifier and Type | Method and Description |
---|---|
static AutoUserScope |
fromString(String value)
Parses a serialized value to a AutoUserScope instance.
|
String |
toString() |
static AutoUserScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoUserScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoUserScope TASK
public static final AutoUserScope POOL
public static AutoUserScope[] values()
for (AutoUserScope c : AutoUserScope.values()) System.out.println(c);
public static AutoUserScope 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 nullpublic static AutoUserScope fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<AutoUserScope>
Copyright © 2019. All rights reserved.