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