Enum GuidedDecisionTable52.HitPolicy
- java.lang.Object
-
- java.lang.Enum<GuidedDecisionTable52.HitPolicy>
-
- org.drools.workbench.models.guided.dtable.shared.model.GuidedDecisionTable52.HitPolicy
-
- All Implemented Interfaces:
Serializable,Comparable<GuidedDecisionTable52.HitPolicy>
- Enclosing class:
- GuidedDecisionTable52
public static enum GuidedDecisionTable52.HitPolicy extends Enum<GuidedDecisionTable52.HitPolicy>
Lists available dtable hit policies.
Source code is genarated based on the selection. NONE is the default, setting no limitations for the table setup and generating nothing that the user does not add himself.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIRST_HITNONERESOLVED_HITRULE_ORDERUNIQUE_HIT
-
Field Summary
Fields Modifier and Type Field Description static StringRESOLVED_HIT_METADATA_NAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuidedDecisionTable52.HitPolicygetDefault()StringgetId()static GuidedDecisionTable52.HitPolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static GuidedDecisionTable52.HitPolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final GuidedDecisionTable52.HitPolicy NONE
-
RESOLVED_HIT
public static final GuidedDecisionTable52.HitPolicy RESOLVED_HIT
-
UNIQUE_HIT
public static final GuidedDecisionTable52.HitPolicy UNIQUE_HIT
-
FIRST_HIT
public static final GuidedDecisionTable52.HitPolicy FIRST_HIT
-
RULE_ORDER
public static final GuidedDecisionTable52.HitPolicy RULE_ORDER
-
-
Field Detail
-
RESOLVED_HIT_METADATA_NAME
public static final String RESOLVED_HIT_METADATA_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static GuidedDecisionTable52.HitPolicy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GuidedDecisionTable52.HitPolicy c : GuidedDecisionTable52.HitPolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuidedDecisionTable52.HitPolicy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getId
public String getId()
-
getDefault
public static GuidedDecisionTable52.HitPolicy getDefault()
-
-