Package org.keycloak.saml.validators
Enum ConditionsValidator.Result
- java.lang.Object
- 
- java.lang.Enum<ConditionsValidator.Result>
- 
- org.keycloak.saml.validators.ConditionsValidator.Result
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ConditionsValidator.Result>
 - Enclosing class:
- ConditionsValidator
 
 public static enum ConditionsValidator.Result extends Enum<ConditionsValidator.Result> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description INDETERMINATEINVALIDVALID
 - 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract ConditionsValidator.ResultjoinResult(ConditionsValidator.Result otherResult)Returns result as per Section 2.5.1.1static ConditionsValidator.ResultvalueOf(String name)Returns the enum constant of this type with the specified name.static ConditionsValidator.Result[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
VALIDpublic static final ConditionsValidator.Result VALID 
 - 
INDETERMINATEpublic static final ConditionsValidator.Result INDETERMINATE 
 - 
INVALIDpublic static final ConditionsValidator.Result INVALID 
 
- 
 - 
Method Detail- 
valuespublic static ConditionsValidator.Result[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConditionsValidator.Result c : ConditionsValidator.Result.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ConditionsValidator.Result valueOf(String name) 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 name
- NullPointerException- if the argument is null
 
 - 
joinResultprotected abstract ConditionsValidator.Result joinResult(ConditionsValidator.Result otherResult) Returns result as per Section 2.5.1.1- Parameters:
- otherResult-
- Returns:
 
 
- 
 
-