static enum MinimizedCondition.MinimizationStyle extends java.lang.Enum<MinimizedCondition.MinimizationStyle>
Enum Constant and Description |
---|
ALLOW_LEADING_NOT
Compute the length of the minimized condition without penalizing
a leading NOT node, if present.
|
PREFER_UNNEGATED
Compute the length of the minimized condition as including
any leading NOT node, if present.
|
Modifier and Type | Method and Description |
---|---|
static MinimizedCondition.MinimizationStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MinimizedCondition.MinimizationStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinimizedCondition.MinimizationStyle PREFER_UNNEGATED
public static final MinimizedCondition.MinimizationStyle ALLOW_LEADING_NOT
public static MinimizedCondition.MinimizationStyle[] values()
for (MinimizedCondition.MinimizationStyle c : MinimizedCondition.MinimizationStyle.values()) System.out.println(c);
public static MinimizedCondition.MinimizationStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null