Enum ContinuousWebJobStatus
- java.lang.Object
-
- java.lang.Enum<ContinuousWebJobStatus>
-
- com.azure.resourcemanager.appservice.models.ContinuousWebJobStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ContinuousWebJobStatus>
public enum ContinuousWebJobStatus extends Enum<ContinuousWebJobStatus>
Defines values for ContinuousWebJobStatus.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INITIALIZINGEnum value Initializing.PENDING_RESTARTEnum value PendingRestart.RUNNINGEnum value Running.STARTINGEnum value Starting.STOPPEDEnum value Stopped.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContinuousWebJobStatusfromString(String value)Parses a serialized value to a ContinuousWebJobStatus instance.StringtoString()static ContinuousWebJobStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ContinuousWebJobStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIALIZING
public static final ContinuousWebJobStatus INITIALIZING
Enum value Initializing.
-
STARTING
public static final ContinuousWebJobStatus STARTING
Enum value Starting.
-
RUNNING
public static final ContinuousWebJobStatus RUNNING
Enum value Running.
-
PENDING_RESTART
public static final ContinuousWebJobStatus PENDING_RESTART
Enum value PendingRestart.
-
STOPPED
public static final ContinuousWebJobStatus STOPPED
Enum value Stopped.
-
-
Method Detail
-
values
public static ContinuousWebJobStatus[] 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 (ContinuousWebJobStatus c : ContinuousWebJobStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContinuousWebJobStatus 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
-
fromString
public static ContinuousWebJobStatus fromString(String value)
Parses a serialized value to a ContinuousWebJobStatus instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed ContinuousWebJobStatus object, or null if unable to parse.
-
toString
public String toString()
- Overrides:
toStringin classEnum<ContinuousWebJobStatus>
-
-