public static enum ConditionsValidator.Result extends Enum<ConditionsValidator.Result>
Enum Constant and Description |
---|
INDETERMINATE |
INVALID |
VALID |
Modifier and Type | Method and Description |
---|---|
protected abstract ConditionsValidator.Result |
joinResult(ConditionsValidator.Result otherResult)
Returns result as per Section 2.5.1.1
|
static ConditionsValidator.Result |
valueOf(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.
|
public static final ConditionsValidator.Result VALID
public static final ConditionsValidator.Result INDETERMINATE
public static final ConditionsValidator.Result INVALID
public static ConditionsValidator.Result[] values()
for (ConditionsValidator.Result c : ConditionsValidator.Result.values()) System.out.println(c);
public static ConditionsValidator.Result 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 nullprotected abstract ConditionsValidator.Result joinResult(ConditionsValidator.Result otherResult)
otherResult
- Copyright © 2021 JBoss by Red Hat. All rights reserved.