Package banner.tagging
Enum TagPosition
- java.lang.Object
-
- java.lang.Enum<TagPosition>
-
- banner.tagging.TagPosition
-
- All Implemented Interfaces:
Serializable,Comparable<TagPosition>
public enum TagPosition extends Enum<TagPosition>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TagPositionconvert(TagFormat format)static StringgetPositionText(TagFormat format, Mention mention, int index)static TagPositiongetPostion(Mention mention, int index)static TagPositionvalueOf(String name)Returns the enum constant of this type with the specified name.static TagPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
I
public static final TagPosition I
-
O
public static final TagPosition O
-
B
public static final TagPosition B
-
E
public static final TagPosition E
-
W
public static final TagPosition W
-
-
Method Detail
-
values
public static TagPosition[] 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 (TagPosition c : TagPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagPosition 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
-
convert
public TagPosition convert(TagFormat format)
-
getPostion
public static TagPosition getPostion(Mention mention, int index)
-
-