|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ChunkTag>
hultig.sumo.ChunkTag
public enum ChunkTag
Represents the Penn Treebank tags at a phrase level, on a shallow parsed sentence.
University of Beira Interior (UBI)
Centre For Human Language Technology and Bioinformatics (HULTIG)
Enum Constant Summary | |
---|---|
ADJP
Adjective Phrase. |
|
ADVP
Adverb Phrase. |
|
CONJP
Conjunction Phrase. |
|
FRAG
Fragment |
|
INTJ
Interjection. |
|
LST
List marker. |
|
NAC
Not a Constituent; used to show the scope of certain prenominal modifiers within an NP. |
|
NP
Noun Phrase. |
|
NX
Used within certain complex NPs to mark the head of the NP. |
|
PP
Prepositional Phrase. |
|
PRN
Parenthetical. |
|
PRT
Particle. |
|
QP
Quantifier Phrase (i.e. complex measure/amount phrase); used within NP. |
|
RRC
RRC - Reduced Relative Clause. |
|
UCP
Unlike Coordinated Phrase. |
|
VP
Verb Phrase. |
|
WHADJP
Wh-adjective Phrase. |
|
WHAVP
Wh-adverb Phrase. |
|
WHNP
WHNP - Wh-noun Phrase. |
|
WHPP
WHPP - Wh-prepositional Phrase. |
Method Summary | |
---|---|
String |
getDescription()
|
static void |
main(String[] args)
Prints the whole domain, each element with its corresponding textual description. |
static ChunkTag |
parse(String sctag)
|
static ChunkTag |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ChunkTag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ChunkTag NP
public static final ChunkTag VP
public static final ChunkTag PP
public static final ChunkTag ADVP
public static final ChunkTag ADJP
public static final ChunkTag CONJP
public static final ChunkTag FRAG
public static final ChunkTag INTJ
public static final ChunkTag LST
public static final ChunkTag NAC
public static final ChunkTag NX
public static final ChunkTag PRN
public static final ChunkTag PRT
public static final ChunkTag QP
public static final ChunkTag RRC
public static final ChunkTag UCP
public static final ChunkTag WHADJP
public static final ChunkTag WHAVP
public static final ChunkTag WHNP
public static final ChunkTag WHPP
Method Detail |
---|
public static ChunkTag[] values()
for (ChunkTag c : ChunkTag.values()) System.out.println(c);
public static ChunkTag valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getDescription()
public static ChunkTag parse(String sctag)
public static void main(String[] args)
args
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |