Package org.fa.tei.jaxb.v2_0
Enum Join.Prontype
- java.lang.Object
-
- java.lang.Enum<Join.Prontype>
-
- org.fa.tei.jaxb.v2_0.Join.Prontype
-
- All Implemented Interfaces:
Serializable,Comparable<Join.Prontype>
- Enclosing class:
- Join
public static enum Join.Prontype extends Enum<Join.Prontype>
http://universaldependencies.org/u/feat/PronType.html This feature typically applies to pronouns, pronominal adjectives (determiners), pronominal numerals (quantifiers) and pronominal adverbs.Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="prs"/> <enumeration value="rcp"/> <enumeration value="art"/> <enumeration value="int"/> <enumeration value="rel"/> <enumeration value="ind"/> <enumeration value="emp"/> <enumeration value="exc"/> <enumeration value="dem"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _intinterrogative pronoun, determiner, numeral or adverbartArticle is a special case of determiner that bears the feature of definitenessdemDemonstrative pronouns are often parallel to interrogatives.empEmphatic pro-adjectives (determiners) emphasize the nominal they depend on.excexclamative determinerindindefinite pronoun, determiner, numeral or adverbprspersonal pronoun or determinerrcpreciprocal pronounrelrelative pronoun, determiner, numeral or adverb
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Join.ProntypefromValue(String v)Stringvalue()static Join.ProntypevalueOf(String name)Returns the enum constant of this type with the specified name.static Join.Prontype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
prs
public static final Join.Prontype prs
personal pronoun or determiner
-
rcp
public static final Join.Prontype rcp
reciprocal pronoun
-
art
public static final Join.Prontype art
Article is a special case of determiner that bears the feature of definiteness
-
_int
public static final Join.Prontype _int
interrogative pronoun, determiner, numeral or adverb
-
rel
public static final Join.Prontype rel
relative pronoun, determiner, numeral or adverb
-
ind
public static final Join.Prontype ind
indefinite pronoun, determiner, numeral or adverb
-
emp
public static final Join.Prontype emp
Emphatic pro-adjectives (determiners) emphasize the nominal they depend on.
-
exc
public static final Join.Prontype exc
exclamative determiner
-
dem
public static final Join.Prontype dem
Demonstrative pronouns are often parallel to interrogatives.
-
-
Method Detail
-
values
public static Join.Prontype[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Join.Prontype c : Join.Prontype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Join.Prontype valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static Join.Prontype fromValue(String v)
-
-