Enum TimeoutEvents.Finished
- java.lang.Object
-
- java.lang.Enum<TimeoutEvents.Finished>
-
- io.smallrye.faulttolerance.core.timeout.TimeoutEvents.Finished
-
- All Implemented Interfaces:
InvocationContextEvent,Serializable,Comparable<TimeoutEvents.Finished>
- Enclosing class:
- TimeoutEvents
public static enum TimeoutEvents.Finished extends Enum<TimeoutEvents.Finished> implements InvocationContextEvent
-
-
Field Summary
Fields Modifier and Type Field Description booleantimedOut
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeoutEvents.FinishedvalueOf(String name)Returns the enum constant of this type with the specified name.static TimeoutEvents.Finished[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMALLY
public static final TimeoutEvents.Finished NORMALLY
-
TIMED_OUT
public static final TimeoutEvents.Finished TIMED_OUT
-
-
Method Detail
-
values
public static TimeoutEvents.Finished[] 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 (TimeoutEvents.Finished c : TimeoutEvents.Finished.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeoutEvents.Finished 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
-
-