public static enum InterpretationNode.Relation extends Enum<InterpretationNode.Relation>
| Enum Constant and Description |
|---|
CONTAINED_IN |
CONTAINS |
EQUALS |
| Modifier and Type | Method and Description |
|---|---|
boolean |
compare(InterpretationNode a,
InterpretationNode b) |
static InterpretationNode.Relation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpretationNode.Relation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpretationNode.Relation EQUALS
public static final InterpretationNode.Relation CONTAINS
public static final InterpretationNode.Relation CONTAINED_IN
public static InterpretationNode.Relation[] values()
for (InterpretationNode.Relation c : InterpretationNode.Relation.values()) System.out.println(c);
public static InterpretationNode.Relation 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 compare(InterpretationNode a, InterpretationNode b)
Copyright © 2018. All rights reserved.