public enum DeployBehavior extends Enum<DeployBehavior>
| Enum Constant and Description | 
|---|
| CLONE_PARENT | 
| OVERWRITE_PARENT | 
| UNDEFINED | 
| Modifier and Type | Method and Description | 
|---|---|
| static DeployBehavior | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DeployBehavior[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DeployBehavior CLONE_PARENT
public static final DeployBehavior OVERWRITE_PARENT
public static final DeployBehavior UNDEFINED
public static DeployBehavior[] values()
for (DeployBehavior c : DeployBehavior.values()) System.out.println(c);
public static DeployBehavior 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 © 2020. All rights reserved.