Enum BlockStateChainingListener.Event
- java.lang.Object
-
- java.lang.Enum<BlockStateChainingListener.Event>
-
- org.xwiki.rendering.listener.chaining.BlockStateChainingListener.Event
-
- All Implemented Interfaces:
Serializable
,Comparable<BlockStateChainingListener.Event>
- Enclosing class:
- BlockStateChainingListener
public static enum BlockStateChainingListener.Event extends Enum<BlockStateChainingListener.Event>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BlockStateChainingListener.Event
valueOf(String name)
Returns the enum constant of this type with the specified name.static BlockStateChainingListener.Event[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final BlockStateChainingListener.Event NONE
-
DEFINITION_DESCRIPTION
public static final BlockStateChainingListener.Event DEFINITION_DESCRIPTION
-
DEFINITION_TERM
public static final BlockStateChainingListener.Event DEFINITION_TERM
-
DEFINITION_LIST
public static final BlockStateChainingListener.Event DEFINITION_LIST
-
DOCUMENT
public static final BlockStateChainingListener.Event DOCUMENT
-
FORMAT
public static final BlockStateChainingListener.Event FORMAT
-
HEADER
public static final BlockStateChainingListener.Event HEADER
-
LINK
public static final BlockStateChainingListener.Event LINK
-
LIST
public static final BlockStateChainingListener.Event LIST
-
LIST_ITEM
public static final BlockStateChainingListener.Event LIST_ITEM
-
MACRO_MARKER
public static final BlockStateChainingListener.Event MACRO_MARKER
-
PARAGRAPH
public static final BlockStateChainingListener.Event PARAGRAPH
-
QUOTATION
public static final BlockStateChainingListener.Event QUOTATION
-
QUOTATION_LINE
public static final BlockStateChainingListener.Event QUOTATION_LINE
-
SECTION
public static final BlockStateChainingListener.Event SECTION
-
TABLE
public static final BlockStateChainingListener.Event TABLE
-
TABLE_CELL
public static final BlockStateChainingListener.Event TABLE_CELL
-
TABLE_HEAD_CELL
public static final BlockStateChainingListener.Event TABLE_HEAD_CELL
-
TABLE_ROW
public static final BlockStateChainingListener.Event TABLE_ROW
-
RAW_TEXT
public static final BlockStateChainingListener.Event RAW_TEXT
-
EMPTY_LINES
public static final BlockStateChainingListener.Event EMPTY_LINES
-
HORIZONTAL_LINE
public static final BlockStateChainingListener.Event HORIZONTAL_LINE
-
ID
public static final BlockStateChainingListener.Event ID
-
IMAGE
public static final BlockStateChainingListener.Event IMAGE
-
NEW_LINE
public static final BlockStateChainingListener.Event NEW_LINE
-
SPACE
public static final BlockStateChainingListener.Event SPACE
-
SPECIAL_SYMBOL
public static final BlockStateChainingListener.Event SPECIAL_SYMBOL
-
MACRO
public static final BlockStateChainingListener.Event MACRO
-
VERBATIM_INLINE
public static final BlockStateChainingListener.Event VERBATIM_INLINE
-
VERBATIM_STANDALONE
public static final BlockStateChainingListener.Event VERBATIM_STANDALONE
-
WORD
public static final BlockStateChainingListener.Event WORD
-
FIGURE
public static final BlockStateChainingListener.Event FIGURE
-
FIGURE_CAPTION
public static final BlockStateChainingListener.Event FIGURE_CAPTION
-
META_DATA
public static final BlockStateChainingListener.Event META_DATA
-
GROUP
public static final BlockStateChainingListener.Event GROUP
-
-
Method Detail
-
values
public static BlockStateChainingListener.Event[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BlockStateChainingListener.Event c : BlockStateChainingListener.Event.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BlockStateChainingListener.Event valueOf(String name)
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-