Package org.alfresco.repo.deployment
Enum DeploymentMethod
- java.lang.Object
-
- java.lang.Enum<DeploymentMethod>
-
- org.alfresco.repo.deployment.DeploymentMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DeploymentMethod>
public enum DeploymentMethod extends java.lang.Enum<DeploymentMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULTThe deployment method was not specified.DOCKER_COMPOSEHELM_CHARTINSTALLERQUICK_STARTZIPThe distribution zip was used to lay down the ACS artifacts
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeploymentMethodvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final DeploymentMethod DEFAULT
The deployment method was not specified.
-
INSTALLER
public static final DeploymentMethod INSTALLER
-
DOCKER_COMPOSE
public static final DeploymentMethod DOCKER_COMPOSE
-
HELM_CHART
public static final DeploymentMethod HELM_CHART
-
ZIP
public static final DeploymentMethod ZIP
The distribution zip was used to lay down the ACS artifacts
-
QUICK_START
public static final DeploymentMethod QUICK_START
-
-
Method Detail
-
values
public static DeploymentMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeploymentMethod c : DeploymentMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeploymentMethod valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-