public enum RulesOperationType extends Enum<RulesOperationType> implements org.switchyard.component.common.knowledge.operation.KnowledgeOperationType
| Enum Constant and Description |
|---|
EXECUTE
The execute type.
|
FIRE_ALL_RULES
The fire all rules type.
|
FIRE_UNTIL_HALT
The fire until halt type.
|
INSERT
The insert type.
|
| Modifier and Type | Method and Description |
|---|---|
static RulesOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RulesOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RulesOperationType EXECUTE
public static final RulesOperationType INSERT
public static final RulesOperationType FIRE_ALL_RULES
public static final RulesOperationType FIRE_UNTIL_HALT
public static RulesOperationType[] values()
for (RulesOperationType c : RulesOperationType.values()) System.out.println(c);
public static RulesOperationType 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.