public enum ProvisionAction extends Enum<ProvisionAction>
| Enum Constant and Description |
|---|
INSTALL_AND_START |
INSTALL_ONLY |
START_ONLY |
| Modifier and Type | Method and Description |
|---|---|
abstract List<ProvisionStep> |
getSteps() |
static ProvisionAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProvisionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProvisionAction INSTALL_ONLY
public static final ProvisionAction START_ONLY
public static final ProvisionAction INSTALL_AND_START
public static ProvisionAction[] values()
for (ProvisionAction c : ProvisionAction.values()) System.out.println(c);
public static ProvisionAction 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 abstract List<ProvisionStep> getSteps()
Copyright © 2022 Apache Software Foundation. All rights reserved.