public enum TriggeredWebJobStatus extends Enum<TriggeredWebJobStatus>
Enum Constant and Description |
---|
ERROR
Enum value Error.
|
FAILED
Enum value Failed.
|
SUCCESS
Enum value Success.
|
Modifier and Type | Method and Description |
---|---|
static TriggeredWebJobStatus |
fromString(String value)
Parses a serialized value to a TriggeredWebJobStatus instance.
|
String |
toString() |
static TriggeredWebJobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggeredWebJobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggeredWebJobStatus SUCCESS
public static final TriggeredWebJobStatus FAILED
public static final TriggeredWebJobStatus ERROR
public static TriggeredWebJobStatus[] values()
for (TriggeredWebJobStatus c : TriggeredWebJobStatus.values()) System.out.println(c);
public static TriggeredWebJobStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static TriggeredWebJobStatus fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<TriggeredWebJobStatus>
Copyright © 2019. All rights reserved.