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