org.jbpm.kie.services.api
public static enum DeploymentUnit.RuntimeStrategy extends Enum<DeploymentUnit.RuntimeStrategy>
Enum Constant and Description |
---|
PER_PROCESS_INSTANCE |
PER_REQUEST |
SINGLETON |
Modifier and Type | Method and Description |
---|---|
static DeploymentUnit.RuntimeStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentUnit.RuntimeStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentUnit.RuntimeStrategy SINGLETON
public static final DeploymentUnit.RuntimeStrategy PER_REQUEST
public static final DeploymentUnit.RuntimeStrategy PER_PROCESS_INSTANCE
public static DeploymentUnit.RuntimeStrategy[] values()
for (DeploymentUnit.RuntimeStrategy c : DeploymentUnit.RuntimeStrategy.values()) System.out.println(c);
public static DeploymentUnit.RuntimeStrategy 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 © 2001-2013 JBoss by Red Hat. All Rights Reserved.