public enum TargetWord extends Enum<TargetWord>
| Enum Constant and Description |
|---|
Arg |
LeftDep |
LeftSibling |
Pred |
PredParent |
RightDep |
RightSibling |
| Modifier and Type | Method and Description |
|---|---|
static TargetWord |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TargetWord[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetWord Pred
public static final TargetWord PredParent
public static final TargetWord Arg
public static final TargetWord LeftDep
public static final TargetWord RightDep
public static final TargetWord LeftSibling
public static final TargetWord RightSibling
public static TargetWord[] values()
for (TargetWord c : TargetWord.values()) System.out.println(c);
public static TargetWord 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 © 2016. All rights reserved.