public enum DeploymentType extends Enum<DeploymentType>
| Enum Constant and Description |
|---|
DOCKER
The harvester service is deployed in a Docker container.
|
JETTY
The harvester service is deployed via the -Drun=jetty
Maven argument.
|
OTHER
The deployment type is unknown.
|
UNIT_TEST
Ther harvester service is being unit-tested.
|
| Modifier and Type | Method and Description |
|---|---|
static DeploymentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentType DOCKER
public static final DeploymentType JETTY
public static final DeploymentType UNIT_TEST
public static final DeploymentType OTHER
public static DeploymentType[] values()
for (DeploymentType c : DeploymentType.values()) System.out.println(c);
public static DeploymentType 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 nullCopyright © 2017–2019. All rights reserved.