Package edu.fiu.jtlex.data
Enum ILink.ALinkType
java.lang.Object
java.lang.Enum<ILink.ALinkType>
edu.fiu.jtlex.data.ILink.ALinkType
- All Implemented Interfaces:
ILinkType,java.io.Serializable,java.lang.Comparable<ILink.ALinkType>,java.lang.constant.Constable
- Enclosing interface:
- ILink
public static enum ILink.ALinkType extends java.lang.Enum<ILink.ALinkType> implements ILinkType
Enum that represents the temporal relation holding between
the entities for ALink.
Possible values are:
- INITIATES
- CULMINATES
- TERMINATES
- CONTINUES
- REINITIATES
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUESJohn kept talking.CULMINATESJohn finished assembling the table.INITIATESJohn started to read.REINITIATESJohn resumed talking.TERMINATESJohn stopped talking. -
Method Summary
Modifier and Type Method Description static ILink.ALinkTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ILink.ALinkType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INITIATES
John started to read. -
CULMINATES
John finished assembling the table. -
TERMINATES
John stopped talking. -
CONTINUES
John kept talking. -
REINITIATES
John resumed talking.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-