Package ro.sync.ecss.extensions.dita
Enum DITANodeRendererCustomizer.DitaClass
- java.lang.Object
-
- java.lang.Enum<DITANodeRendererCustomizer.DitaClass>
-
- ro.sync.ecss.extensions.dita.DITANodeRendererCustomizer.DitaClass
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DITANodeRendererCustomizer.DitaClass>
- Enclosing class:
- DITANodeRendererCustomizer
public static enum DITANodeRendererCustomizer.DitaClass extends java.lang.Enum<DITANodeRendererCustomizer.DitaClass>
DITA classes constants.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description B_CLASS
Bold class.BODY_DIV_CLASS
Body div class.BOOKMAP_CLASS
Bookmap class.CONCEPT_BODY_CLASS
Concept body class.CONCEPT_CLASS
Concept class.ENTRY_CLASS
Entry class.I_CLASS
Italic class.IMAGE_CLASS
Image class.INDEXTERM_CLASS
Index term class.LI_CLASS
LI class.LINK_CLASS
Link class.MAP_CLASS
Map class.OBJECT_CLASS
Object class.OL_CLASS
OL class.P_CLASS
Paragraph class.ROW_CLASS
Row class.SECTION_CLASS
Section class.SIMPLE_TABLE_CLASS
Simple table class.STENTRY_CLASS
STEntry class.STEP_CLASS
Step class.STEPS_CLASS
Steps class.STHEAD_CLASS
STHead class.STROW_CLASS
STRow class.TABLE_CLASS
Table class.TASK_BODY_CLASS
Task body class.TASK_CLASS
Task class.TBODY_CLASS
TBody class.THEAD_CLASS
THead class.TITLE_CLASS
Title class.TOPIC_BODY_CLASS
Topic body class.TOPIC_CLASS
Topic class.U_CLASS
Underline class.UL_CLASS
UL class.XREF_CLASS
XREF class.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static DITANodeRendererCustomizer.DitaClass
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DITANodeRendererCustomizer.DitaClass[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TITLE_CLASS
public static final DITANodeRendererCustomizer.DitaClass TITLE_CLASS
Title class.
-
TOPIC_BODY_CLASS
public static final DITANodeRendererCustomizer.DitaClass TOPIC_BODY_CLASS
Topic body class.
-
CONCEPT_BODY_CLASS
public static final DITANodeRendererCustomizer.DitaClass CONCEPT_BODY_CLASS
Concept body class.
-
TASK_BODY_CLASS
public static final DITANodeRendererCustomizer.DitaClass TASK_BODY_CLASS
Task body class.
-
P_CLASS
public static final DITANodeRendererCustomizer.DitaClass P_CLASS
Paragraph class.
-
I_CLASS
public static final DITANodeRendererCustomizer.DitaClass I_CLASS
Italic class.
-
B_CLASS
public static final DITANodeRendererCustomizer.DitaClass B_CLASS
Bold class.
-
U_CLASS
public static final DITANodeRendererCustomizer.DitaClass U_CLASS
Underline class.
-
IMAGE_CLASS
public static final DITANodeRendererCustomizer.DitaClass IMAGE_CLASS
Image class.
-
LINK_CLASS
public static final DITANodeRendererCustomizer.DitaClass LINK_CLASS
Link class.
-
XREF_CLASS
public static final DITANodeRendererCustomizer.DitaClass XREF_CLASS
XREF class.
-
TABLE_CLASS
public static final DITANodeRendererCustomizer.DitaClass TABLE_CLASS
Table class.
-
SIMPLE_TABLE_CLASS
public static final DITANodeRendererCustomizer.DitaClass SIMPLE_TABLE_CLASS
Simple table class.
-
THEAD_CLASS
public static final DITANodeRendererCustomizer.DitaClass THEAD_CLASS
THead class.
-
STHEAD_CLASS
public static final DITANodeRendererCustomizer.DitaClass STHEAD_CLASS
STHead class.
-
TBODY_CLASS
public static final DITANodeRendererCustomizer.DitaClass TBODY_CLASS
TBody class.
-
ROW_CLASS
public static final DITANodeRendererCustomizer.DitaClass ROW_CLASS
Row class.
-
STROW_CLASS
public static final DITANodeRendererCustomizer.DitaClass STROW_CLASS
STRow class.
-
ENTRY_CLASS
public static final DITANodeRendererCustomizer.DitaClass ENTRY_CLASS
Entry class.
-
STENTRY_CLASS
public static final DITANodeRendererCustomizer.DitaClass STENTRY_CLASS
STEntry class.
-
UL_CLASS
public static final DITANodeRendererCustomizer.DitaClass UL_CLASS
UL class.
-
OL_CLASS
public static final DITANodeRendererCustomizer.DitaClass OL_CLASS
OL class.
-
STEPS_CLASS
public static final DITANodeRendererCustomizer.DitaClass STEPS_CLASS
Steps class.
-
STEP_CLASS
public static final DITANodeRendererCustomizer.DitaClass STEP_CLASS
Step class.
-
LI_CLASS
public static final DITANodeRendererCustomizer.DitaClass LI_CLASS
LI class.
-
BODY_DIV_CLASS
public static final DITANodeRendererCustomizer.DitaClass BODY_DIV_CLASS
Body div class.
-
SECTION_CLASS
public static final DITANodeRendererCustomizer.DitaClass SECTION_CLASS
Section class.
-
TOPIC_CLASS
public static final DITANodeRendererCustomizer.DitaClass TOPIC_CLASS
Topic class.
-
MAP_CLASS
public static final DITANodeRendererCustomizer.DitaClass MAP_CLASS
Map class.
-
BOOKMAP_CLASS
public static final DITANodeRendererCustomizer.DitaClass BOOKMAP_CLASS
Bookmap class.
-
TASK_CLASS
public static final DITANodeRendererCustomizer.DitaClass TASK_CLASS
Task class.
-
CONCEPT_CLASS
public static final DITANodeRendererCustomizer.DitaClass CONCEPT_CLASS
Concept class.
-
INDEXTERM_CLASS
public static final DITANodeRendererCustomizer.DitaClass INDEXTERM_CLASS
Index term class.
-
OBJECT_CLASS
public static final DITANodeRendererCustomizer.DitaClass OBJECT_CLASS
Object class.
-
-
Method Detail
-
values
public static DITANodeRendererCustomizer.DitaClass[] 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 (DITANodeRendererCustomizer.DitaClass c : DITANodeRendererCustomizer.DitaClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DITANodeRendererCustomizer.DitaClass valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
- Returns:
- Returns the value.
-
-