Enum Class EventType
- All Implemented Interfaces:
Serializable,Comparable<EventType>,Constable
Stores event types and offers a way to call a stored event.
- Since:
- 1.8RC1
- Version:
- $Id: a41a437f6d5e24a013e4966e8b5d38b97de43db3 $
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionabstract voidCalls an event method on the passed listener with the passed parameters.booleanstatic EventTypeReturns the enum constant of this class with the specified name.static EventType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BEGIN_DOCUMENT
-
END_DOCUMENT
-
BEGIN_GROUP
- See Also:
-
END_GROUP
- See Also:
-
BEGIN_PARAGRAPH
- See Also:
-
END_PARAGRAPH
- See Also:
-
BEGIN_DEFINITION_LIST
-
END_DEFINITION_LIST
-
BEGIN_DEFINITION_TERM
- See Also:
-
END_DEFINITION_TERM
- See Also:
-
BEGIN_DEFINITION_DESCRIPTION
- See Also:
-
END_DEFINITION_DESCRIPTION
- See Also:
-
BEGIN_FORMAT
-
END_FORMAT
-
BEGIN_HEADER
-
END_HEADER
-
BEGIN_LINK
-
END_LINK
-
BEGIN_LIST
-
END_LIST
-
BEGIN_LIST_ITEM
- See Also:
-
END_LIST_ITEM
- See Also:
-
BEGIN_MACRO_MARKER
-
END_MACRO_MARKER
-
BEGIN_QUOTATION
- See Also:
-
END_QUOTATION
- See Also:
-
BEGIN_QUOTATION_LINE
- See Also:
-
END_QUOTATION_LINE
- See Also:
-
BEGIN_SECTION
- See Also:
-
END_SECTION
- See Also:
-
BEGIN_TABLE
- See Also:
-
END_TABLE
- See Also:
-
BEGIN_TABLE_CELL
- See Also:
-
END_TABLE_CELL
- See Also:
-
BEGIN_TABLE_HEAD_CELL
-
END_TABLE_HEAD_CELL
- See Also:
-
BEGIN_TABLE_ROW
- See Also:
-
END_TABLE_ROW
- See Also:
-
BEGIN_METADATA
-
END_METADATA
-
ON_RAW_TEXT
-
ON_EMPTY_LINES
- See Also:
-
ON_HORIZONTAL_LINE
- See Also:
-
ON_ID
- See Also:
-
ON_IMAGE
-
ON_MACRO
-
ON_NEW_LINE
- See Also:
-
ON_SPACE
- See Also:
-
ON_SPECIAL_SYMBOL
- See Also:
-
ON_VERBATIM
-
ON_WORD
- See Also:
-
BEGIN_FIGURE
- See Also:
-
BEGIN_FIGURE_CAPTION
- See Also:
-
END_FIGURE
- See Also:
-
END_FIGURE_CAPTION
- See Also:
-
-
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
-
fireEvent
Calls an event method on the passed listener with the passed parameters.- Parameters:
listener- the listener to calleventParameters- the parameters to use when calling the event method on the passed listener
-
isInlineEnd
public boolean isInlineEnd()- Returns:
- true if the event stops the inline mode or false otherwise
-