Enum AckWatchResponse.Status
- java.lang.Object
-
- java.lang.Enum<AckWatchResponse.Status>
-
- com.floragunn.signals.actions.watch.ack.AckWatchResponse.Status
-
- All Implemented Interfaces:
Serializable,Comparable<AckWatchResponse.Status>
- Enclosing class:
- AckWatchResponse
public static enum AckWatchResponse.Status extends Enum<AckWatchResponse.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCEPTIONILLEGAL_STATENO_SUCH_TENANTNO_SUCH_WATCHSUCCESSUNAUTHORIZED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AckWatchResponse.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static AckWatchResponse.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final AckWatchResponse.Status SUCCESS
-
NO_SUCH_WATCH
public static final AckWatchResponse.Status NO_SUCH_WATCH
-
EXCEPTION
public static final AckWatchResponse.Status EXCEPTION
-
ILLEGAL_STATE
public static final AckWatchResponse.Status ILLEGAL_STATE
-
NO_SUCH_TENANT
public static final AckWatchResponse.Status NO_SUCH_TENANT
-
UNAUTHORIZED
public static final AckWatchResponse.Status UNAUTHORIZED
-
-
Method Detail
-
values
public static AckWatchResponse.Status[] 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 (AckWatchResponse.Status c : AckWatchResponse.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AckWatchResponse.Status 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
-
-