Package edu.fiu.jtlex.timeml.data
Enum Class ITimeMLTimex.FunctionInDocument
java.lang.Object
java.lang.Enum<ITimeMLTimex.FunctionInDocument>
edu.fiu.jtlex.timeml.data.ITimeMLTimex.FunctionInDocument
- All Implemented Interfaces:
Serializable
,Comparable<ITimeMLTimex.FunctionInDocument>
,Constable
- Enclosing interface:
ITimeMLTimex
An enum that represents the seven different functions an object may
belong to.
Function may belong to:
Function may belong to:
- CREATION_TIME
- MODIFICATION_TIME
- PUBLICATION_TIME
- RELEASE_TIME
- RECEPTION_TIME
- EXPIRATION_TIME
- NONE
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe time the story is created.The time the story expires (if any).The time the story is modified.Null FunctionThe time the story is published.The time the story was received by a customer.The time the story may be released (if not immediately). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ITimeMLTimex.FunctionInDocument[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATION_TIME
The time the story is created. -
MODIFICATION_TIME
The time the story is modified. -
PUBLICATION_TIME
The time the story is published. -
RELEASE_TIME
The time the story may be released (if not immediately). -
RECEPTION_TIME
The time the story was received by a customer. -
EXPIRATION_TIME
The time the story expires (if any). -
NONE
Null Function
-
-
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
-