Package edu.fiu.jtlex.data
Enum IEvent.EventClass
java.lang.Object
java.lang.Enum<IEvent.EventClass>
edu.fiu.jtlex.data.IEvent.EventClass
- All Implemented Interfaces:
IType,java.io.Serializable,java.lang.Comparable<IEvent.EventClass>,java.lang.constant.Constable
- Enclosing interface:
- IEvent
public static enum IEvent.EventClass extends java.lang.Enum<IEvent.EventClass> implements IType
An enum that represents the seven different event classes an object may
belong to. Event may belong to REPORTING, PERCEPTION, ASPECTUAL, I_ACTION,
I_STATE, STATE, or OCCURENCE event class.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ASPECTUALGrammatical device of aspectual predicationI_ACTIONAn I_ACTION is an Intensional Action.I_STATEThis class includes states that refer to alternative or possible worlds, (delimited by square brackets in the examples below), which can be introduced by subordinated clauses, nominalizations, or untensed VPs.OCCURRENCEThis class includes all the many other kinds of events describing something that happens or occurs in the world.PERCEPTIONEvents involving the physical perception of another event.REPORTINGDescribes the action of a person or an organization declaring something, narrating an event, informing about an event, etc.STATEStates describe circumstances in which something obtains or holds true. -
Method Summary
Modifier and Type Method Description static IEvent.EventClassvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IEvent.EventClass[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
REPORTING
Describes the action of a person or an organization declaring something, narrating an event, informing about an event, etc. -
PERCEPTION
Events involving the physical perception of another event. Such events are typically expressed by verbs like: see, watch, glimpse, behold, view, hear, listen, overhear. -
ASPECTUAL
Grammatical device of aspectual predication -
I_ACTION
An I_ACTION is an Intensional Action.An I ACTION introduces an event argument (which must be in the text explicitly) describing an action or situation from which we can infer something given its relation with the I_ACTION.
Explicit performative predicates are also included here. Note that the I_ACTION class does not cover states.
-
I_STATE
This class includes states that refer to alternative or possible worlds, (delimited by square brackets in the examples below), which can be introduced by subordinated clauses, nominalizations, or untensed VPs. -
STATE
States describe circumstances in which something obtains or holds true. -
OCCURRENCE
This class includes all the many other kinds of events describing something that happens or occurs in the world.
-
-
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
-