public enum AdjMarker extends Enum<AdjMarker>
| Enum Constant and Description |
|---|
POSTNOMINAL |
PREDICATE |
PRENOMINAL |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Returns a user-readable description of the type of marker, drawn from the
Wordnet specification.
|
String |
getSymbol()
Returns the adjective marker symbol, as found appended to the ends of
adjective words in the data files, parenthesis included.
|
static AdjMarker |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdjMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdjMarker PREDICATE
public static final AdjMarker PRENOMINAL
public static final AdjMarker POSTNOMINAL
public static AdjMarker[] values()
for (AdjMarker c : AdjMarker.values()) System.out.println(c);
public static AdjMarker 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 String getSymbol()
public String getDescription()
Copyright © 2018. All rights reserved.