public enum ParameterComparisonResult extends Enum<ParameterComparisonResult>
Result of a comparison of a CvTerm T defined in a CvRule against the parameter P found via JXPath.
The comparison can yield three different results: P == T : P is identical to T: IDENTICAL, P -- T : P is a child of T: CHILD_OF, P != T : P is neither a child nor identical to T, they are: NOT_RELATED;
| Enum Constant and Description |
|---|
CHILD_OF |
IDENTICAL |
NOT_RELATED |
| Modifier and Type | Method and Description |
|---|---|
static ParameterComparisonResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterComparisonResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterComparisonResult IDENTICAL
public static final ParameterComparisonResult CHILD_OF
public static final ParameterComparisonResult NOT_RELATED
public static ParameterComparisonResult[] values()
for (ParameterComparisonResult c : ParameterComparisonResult.values()) System.out.println(c);
public static ParameterComparisonResult 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 © 2018 Leibniz-Institut für Analytische Wissenschaften – ISAS – e.V.. All rights reserved.