Package org.fa.tei.jaxb.v2_0
Enum Join.Convertedfrom
- java.lang.Object
-
- java.lang.Enum<Join.Convertedfrom>
-
- org.fa.tei.jaxb.v2_0.Join.Convertedfrom
-
- All Implemented Interfaces:
Serializable,Comparable<Join.Convertedfrom>
- Enclosing class:
- Join
public static enum Join.Convertedfrom extends Enum<Join.Convertedfrom>
Not in universaldependencies. words belonging to one part of speach category used as another category.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="adj"/> <enumeration value="adv"/> <enumeration value="ver"/> <enumeration value="num"/> <enumeration value="pro"/> <enumeration value="part"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Join.ConvertedfromfromValue(String v)Stringvalue()static Join.ConvertedfromvalueOf(String name)Returns the enum constant of this type with the specified name.static Join.Convertedfrom[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
adj
public static final Join.Convertedfrom adj
Not in universaldependencies. adjective used as another category
-
adv
public static final Join.Convertedfrom adv
Not in universaldependencies. adverb used as another category
-
ver
public static final Join.Convertedfrom ver
Not in universaldependencies. verb used as another category
-
num
public static final Join.Convertedfrom num
Not in universaldependencies. numeral used as another category
-
pro
public static final Join.Convertedfrom pro
Not in universaldependencies. pronomen used as another category
-
part
public static final Join.Convertedfrom part
Not in universaldependencies. verbform part used as another category
-
-
Method Detail
-
values
public static Join.Convertedfrom[] 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.Convertedfrom c : Join.Convertedfrom.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.Convertedfrom 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.Convertedfrom fromValue(String v)
-
-