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