protected static enum LeftFactoringRuleTransformer.DecisionFactorMode extends Enum<LeftFactoringRuleTransformer.DecisionFactorMode>
| Enum Constant and Description |
|---|
COMBINED_FACTOR
Alternatives are factored where possible; results are combined, and
both factored and unfactored alternatives are included in the result.
|
FULL_FACTOR
Factors all alternatives of the decision.
|
PARTIAL_FACTORED
Attempts to factor all alternatives of the decision.
|
PARTIAL_UNFACTORED
Attempts to factor all alternatives of the decision, and returns the
remaining unfactored alternatives.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
includeFactoredAlts() |
boolean |
includeUnfactoredAlts() |
static LeftFactoringRuleTransformer.DecisionFactorMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LeftFactoringRuleTransformer.DecisionFactorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeftFactoringRuleTransformer.DecisionFactorMode COMBINED_FACTOR
public static final LeftFactoringRuleTransformer.DecisionFactorMode FULL_FACTOR
public static final LeftFactoringRuleTransformer.DecisionFactorMode PARTIAL_FACTORED
public static final LeftFactoringRuleTransformer.DecisionFactorMode PARTIAL_UNFACTORED
public static LeftFactoringRuleTransformer.DecisionFactorMode[] values()
for (LeftFactoringRuleTransformer.DecisionFactorMode c : LeftFactoringRuleTransformer.DecisionFactorMode.values()) System.out.println(c);
public static LeftFactoringRuleTransformer.DecisionFactorMode 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 nullpublic boolean includeFactoredAlts()
public boolean includeUnfactoredAlts()
Copyright © 1992–2020 Tunnel Vision Laboratories, LLC. All rights reserved.