public enum KnowledgeRuntimeManagerType extends Enum<KnowledgeRuntimeManagerType>
| Enum Constant and Description |
|---|
PER_PROCESS_INSTANCE
The PerProcessInstance type.
|
PER_REQUEST
The PerRequest type.
|
SINGLETON
The Singleton type.
|
| Modifier and Type | Method and Description |
|---|---|
static KnowledgeRuntimeManagerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KnowledgeRuntimeManagerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KnowledgeRuntimeManagerType SINGLETON
public static final KnowledgeRuntimeManagerType PER_REQUEST
public static final KnowledgeRuntimeManagerType PER_PROCESS_INSTANCE
public static KnowledgeRuntimeManagerType[] values()
for (KnowledgeRuntimeManagerType c : KnowledgeRuntimeManagerType.values()) System.out.println(c);
public static KnowledgeRuntimeManagerType 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 © 2013–2017 JBoss by Red Hat. All rights reserved.