public enum RuleMetadataType extends Enum<RuleMetadataType>
| Enum Constant and Description |
|---|
AUTO_COMMIT
Whether or not to call commit after each
Rule execution. |
HALT_ON_EXCEPTION
Whether Windup should stop execution if this provider's rule execution ends with an exception.
|
ORIGIN
The
Rule origin. |
RULE_PROVIDER
The
AbstractRuleProvider that originated this rule |
RULE_XML
Contains the raw xml that produced this
Rule. |
TAGS
The tags describing this
Rule. |
| Modifier and Type | Method and Description |
|---|---|
static RuleMetadataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuleMetadataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleMetadataType RULE_PROVIDER
AbstractRuleProvider that originated this rulepublic static final RuleMetadataType RULE_XML
Rule.public static final RuleMetadataType ORIGIN
Rule origin.public static final RuleMetadataType TAGS
Rule.public static final RuleMetadataType AUTO_COMMIT
Rule execution.
The default behavior (if this is not set) is to autocommit after each rule execution.public static final RuleMetadataType HALT_ON_EXCEPTION
public static RuleMetadataType[] values()
for (RuleMetadataType c : RuleMetadataType.values()) System.out.println(c);
public static RuleMetadataType 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 © 2021 JBoss by Red Hat. All rights reserved.