Enum TransportSchedulerConfigUpdateAction.NodeResponse.Status
- java.lang.Object
-
- java.lang.Enum<TransportSchedulerConfigUpdateAction.NodeResponse.Status>
-
- com.floragunn.searchsupport.jobs.actions.TransportSchedulerConfigUpdateAction.NodeResponse.Status
-
- All Implemented Interfaces:
Serializable,Comparable<TransportSchedulerConfigUpdateAction.NodeResponse.Status>
- Enclosing class:
- TransportSchedulerConfigUpdateAction.NodeResponse
public static enum TransportSchedulerConfigUpdateAction.NodeResponse.Status extends Enum<TransportSchedulerConfigUpdateAction.NodeResponse.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCEPTIONNO_SUCH_JOB_STORESUCCESS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TransportSchedulerConfigUpdateAction.NodeResponse.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TransportSchedulerConfigUpdateAction.NodeResponse.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 TransportSchedulerConfigUpdateAction.NodeResponse.Status SUCCESS
-
NO_SUCH_JOB_STORE
public static final TransportSchedulerConfigUpdateAction.NodeResponse.Status NO_SUCH_JOB_STORE
-
EXCEPTION
public static final TransportSchedulerConfigUpdateAction.NodeResponse.Status EXCEPTION
-
-
Method Detail
-
values
public static TransportSchedulerConfigUpdateAction.NodeResponse.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 (TransportSchedulerConfigUpdateAction.NodeResponse.Status c : TransportSchedulerConfigUpdateAction.NodeResponse.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 TransportSchedulerConfigUpdateAction.NodeResponse.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
-
-