public enum ResumePreviousBy extends Enum<ResumePreviousBy>
ProcessApplicationDeploymentBuilder.resumePreviousVersionsBy(String).| Modifier and Type | Field and Description | 
|---|---|
| static String | RESUME_BY_DEPLOYMENT_NAMEResume previous deployments that have the same name as the new deployment | 
| static String | RESUME_BY_PROCESS_DEFINITION_KEYResume previous deployments that contain processes with the same key as in the new deployment | 
| Modifier and Type | Method and Description | 
|---|---|
| static ResumePreviousBy | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ResumePreviousBy[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final String RESUME_BY_PROCESS_DEFINITION_KEY
public static final String RESUME_BY_DEPLOYMENT_NAME
public static ResumePreviousBy[] values()
for (ResumePreviousBy c : ResumePreviousBy.values()) System.out.println(c);
public static ResumePreviousBy 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 © 2018. All rights reserved.