@ThreadSafe public enum ValidationResult extends Enum<ValidationResult>
Enum Constant and Description |
---|
INDETERMINATE
Indicates that the validity of the assertion could not be determined.
|
INVALID
Indicates that the assertion failed validation, should be considered invalid.
|
VALID
Indicates that the assertion passed validation and should be considered valid.
|
Modifier and Type | Method and Description |
---|---|
static ValidationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationResult VALID
public static final ValidationResult INDETERMINATE
public static final ValidationResult INVALID
public static ValidationResult[] values()
for (ValidationResult c : ValidationResult.values()) System.out.println(c);
public static ValidationResult 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 © 1999–2016 Shibboleth Consortium. All rights reserved.