public static enum ComparisonResult.Type extends Enum<ComparisonResult.Type>
| Enum Constant and Description |
|---|
EQUAL
Extractors are equal.
|
LESS_EQUAL
Value extracted by the first extractor is less than or equal to the value extracted by the second extractor
for any combination of parameters.
|
LESS_RESTRICTIVE
This predicate is less restrictive than the parameter
predicate.
|
LESS_THAN
Value extracted by the first extractor is less than value extracted by the second extractor
for any combination of parameters.
|
MORE_EQUAL
Value extracted by the first extractor is more than or equal to the value extracted by the second extractor
for any combination of parameters.
|
MORE_RESTRICTIVE
This predicate is more restrictive than the parameter
predicate.
|
MORE_THAN
Value extracted by the first extractor is more than value extracted by the second extractor
for any combination of parameters.
|
NOT_EQUAL
Extractors are not equal, i.e.
|
OPPOSITE
When this predicate evaluates to true, the parameter
predicate evaluates to false and vice-versa.
|
OPPOSITE_LESS_RESTRICTIVE
The opposite of this predicate is less restrictive than
the parameter predicate.
|
OPPOSITE_MORE_RESTRICTIVE
The opposite of this predicate is more restrictive than
the parameter predicate.
|
UNEQUAL
Value extracted by the first extractor is not equal to the value extracted by the second extractor
for any combination of parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static ComparisonResult.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonResult.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonResult.Type EQUAL
public static final ComparisonResult.Type NOT_EQUAL
public static final ComparisonResult.Type LESS_RESTRICTIVE
public static final ComparisonResult.Type MORE_RESTRICTIVE
public static final ComparisonResult.Type OPPOSITE
public static final ComparisonResult.Type OPPOSITE_LESS_RESTRICTIVE
public static final ComparisonResult.Type OPPOSITE_MORE_RESTRICTIVE
public static final ComparisonResult.Type LESS_THAN
public static final ComparisonResult.Type LESS_EQUAL
public static final ComparisonResult.Type MORE_EQUAL
public static final ComparisonResult.Type MORE_THAN
public static final ComparisonResult.Type UNEQUAL
public static ComparisonResult.Type[] values()
for (ComparisonResult.Type c : ComparisonResult.Type.values()) System.out.println(c);
public static ComparisonResult.Type 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 null