Enum HotRodExecutionStatus
- java.lang.Object
-
- java.lang.Enum<HotRodExecutionStatus>
-
- org.keycloak.models.map.storage.hotRod.authSession.HotRodExecutionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<HotRodExecutionStatus>
public enum HotRodExecutionStatus extends Enum<HotRodExecutionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTEMPTED
CHALLENGED
EVALUATED_FALSE
EVALUATED_TRUE
FAILED
SETUP_REQUIRED
SKIPPED
SUCCESS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HotRodExecutionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static HotRodExecutionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILED
@ProtoEnumValue(number=0) public static final HotRodExecutionStatus FAILED
-
SUCCESS
@ProtoEnumValue(number=1) public static final HotRodExecutionStatus SUCCESS
-
SETUP_REQUIRED
@ProtoEnumValue(number=2) public static final HotRodExecutionStatus SETUP_REQUIRED
-
ATTEMPTED
@ProtoEnumValue(number=3) public static final HotRodExecutionStatus ATTEMPTED
-
SKIPPED
@ProtoEnumValue(number=4) public static final HotRodExecutionStatus SKIPPED
-
CHALLENGED
@ProtoEnumValue(number=5) public static final HotRodExecutionStatus CHALLENGED
-
EVALUATED_TRUE
@ProtoEnumValue(number=6) public static final HotRodExecutionStatus EVALUATED_TRUE
-
EVALUATED_FALSE
@ProtoEnumValue(number=7) public static final HotRodExecutionStatus EVALUATED_FALSE
-
-
Method Detail
-
values
public static HotRodExecutionStatus[] 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 (HotRodExecutionStatus c : HotRodExecutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HotRodExecutionStatus 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 nameNullPointerException
- if the argument is null
-
-