Package org.opensaml.saml.saml1.core
Enum DecisionTypeEnumeration
- All Implemented Interfaces:
Serializable
,Comparable<DecisionTypeEnumeration>
public enum DecisionTypeEnumeration extends Enum<DecisionTypeEnumeration>
A type safe enumeration of
AuthorizationDecisionStatement
decision types.-
Enum Constant Summary
Enum Constants Enum Constant Description DENY
Deny decision type.INDETERMINATE
Indeterminate decision type.PERMIT
Permit decision type. -
Field Summary
Fields Modifier and Type Field Description private String
decisionType
The decision type string. -
Constructor Summary
Constructors Modifier Constructor Description private
DecisionTypeEnumeration(String newDecisionType)
Constructor. -
Method Summary
Modifier and Type Method Description String
toString()
static DecisionTypeEnumeration
valueOf(String name)
Returns the enum constant of this type with the specified name.static DecisionTypeEnumeration[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PERMIT
Permit decision type. -
DENY
Deny decision type. -
INDETERMINATE
Indeterminate decision type.
-
-
Field Details
-
decisionType
The decision type string.
-
-
Constructor Details
-
DecisionTypeEnumeration
Constructor.- Parameters:
newDecisionType
- the decision type string
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<DecisionTypeEnumeration>
-