public enum WebJobType extends Enum<WebJobType>
| Enum Constant and Description |
|---|
CONTINUOUS
Enum value Continuous.
|
TRIGGERED
Enum value Triggered.
|
| Modifier and Type | Method and Description |
|---|---|
static WebJobType |
fromString(String value)
Parses a serialized value to a WebJobType instance.
|
String |
toString() |
static WebJobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebJobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebJobType CONTINUOUS
public static final WebJobType TRIGGERED
public static WebJobType[] values()
for (WebJobType c : WebJobType.values()) System.out.println(c);
public static WebJobType 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 WebJobType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<WebJobType>Copyright © 2019. All rights reserved.