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