Package edu.fiu.jtlex.timeml.data
Enum Class ITimeMLLink.ALink
- All Implemented Interfaces:
ITimeMLLink.ITimeMLLinkType
,Serializable
,Comparable<ITimeMLLink.ALink>
,Constable
- Enclosing interface:
ITimeMLLink
public static enum ITimeMLLink.ALink
extends Enum<ITimeMLLink.ALink>
implements ITimeMLLink.ITimeMLLinkType
Enum that represents the temporal relation holding between
the entities for ALink.
Possible values are:
- INITIATES
- CULMINATES
- TERMINATES
- CONTINUES
- REINITIATES
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionJohn kept talking.John finished assembling the table.John started to read.John resumed talking.John stopped talking. -
Method Summary
Modifier and TypeMethodDescriptionstatic ITimeMLLink.ALink
Returns the enum constant of this class with the specified name.static ITimeMLLink.ALink[]
values()
Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-