public enum DeploymentMethod extends Enum<DeploymentMethod>
| Enum Constant and Description |
|---|
DEFAULT
The deployment method was not specified.
|
DOCKER_COMPOSE |
HELM_CHART |
INSTALLER |
QUICK_START |
ZIP
The distribution zip was used to lay down the ACS artifacts
|
| Modifier and Type | Method and Description |
|---|---|
static DeploymentMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentMethod DEFAULT
public static final DeploymentMethod INSTALLER
public static final DeploymentMethod DOCKER_COMPOSE
public static final DeploymentMethod HELM_CHART
public static final DeploymentMethod ZIP
public static final DeploymentMethod QUICK_START
public static DeploymentMethod[] values()
for (DeploymentMethod c : DeploymentMethod.values()) System.out.println(c);
public static DeploymentMethod 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 © 2005–2018 Alfresco Software. All rights reserved.