public static enum PermissionVoter.VotingResult extends Enum<PermissionVoter.VotingResult>
Enum Constant and Description |
---|
ALLOW |
DENY |
NOT_APPLICABLE |
Modifier and Type | Method and Description |
---|---|
static PermissionVoter.VotingResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PermissionVoter.VotingResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermissionVoter.VotingResult ALLOW
public static final PermissionVoter.VotingResult DENY
public static final PermissionVoter.VotingResult NOT_APPLICABLE
public static PermissionVoter.VotingResult[] values()
for (PermissionVoter.VotingResult c : PermissionVoter.VotingResult.values()) System.out.println(c);
public static PermissionVoter.VotingResult 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 © 2018 JBoss by Red Hat. All rights reserved.