public enum DeployMethod extends Enum<DeployMethod>
| Enum Constant and Description | 
|---|
FULL  | 
INCREMENTAL  | 
| Modifier and Type | Method and Description | 
|---|---|
static DeployMethod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DeployMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DeployMethod FULL
public static final DeployMethod INCREMENTAL
public static DeployMethod[] values()
for (DeployMethod c : DeployMethod.values()) System.out.println(c);
public static DeployMethod 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 © 2004-2016 VILT Group. All Rights Reserved.