Package edu.fiu.jtlex
Interface ILingusticEvent
- All Superinterfaces:
IANode
- All Known Implementing Classes:
LInguisticEvent
public interface ILingusticEvent extends IANode
- Author:
- arada002
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classILingusticEvent.EventAspectstatic classILingusticEvent.EventIntentstatic classILingusticEvent.EventType -
Method Summary
Modifier and Type Method Description intgetBegin()gets the word’s first character position within textintgetEnd()gets the word’s last character position within textILingusticEvent.EventIntentgetEventIntent()an enum that represent the event intent.ILingusticEvent.EventTypegetEventType()An event type that can be REPORTintgetId()id of the anansi; may not be negativejava.lang.StringgetLemma()indicates the ‘head’ or the main term in the noun phrase.edu.fiu.jtlex.data.ILinkgetSLink()SLINK relation linking the Intentional Event and the main eventjava.lang.StringgetText()gets the textual content of the nodeedu.fiu.jtlex.data.IEventtoEvent()Related event instance
-
Method Details
-
getId
int getId()id of the anansi; may not be negative -
getLemma
java.lang.String getLemma()indicates the ‘head’ or the main term in the noun phrase. -
getText
java.lang.String getText()gets the textual content of the node -
getBegin
int getBegin()gets the word’s first character position within text -
getEnd
int getEnd()gets the word’s last character position within text -
getEventType
ILingusticEvent.EventType getEventType()An event type that can be REPORT -
getEventIntent
ILingusticEvent.EventIntent getEventIntent()an enum that represent the event intent. It can be ACHIEVEMENT, I_STATE, NEGATIVE_I_STATE, POSITIVE_ACTION, or NEGATIVE_ACTION -
toEvent
edu.fiu.jtlex.data.IEvent toEvent()Related event instance -
getSLink
edu.fiu.jtlex.data.ILink getSLink()SLINK relation linking the Intentional Event and the main event
-