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