public enum DocumentationItemType extends java.lang.Enum<DocumentationItemType>
| Enum Constant and Description |
|---|
ARTICLE
Article documentation item type. it can't contain anything.
|
CHAPTER
Chapter documentation type.
|
CONTEXTUAL
Contextual documentation item type ie bricks.
|
DOCUMENT
Document documentation item type.It can contain ARTICLE documentation type
|
UNKNOWN
Unknown documentation item type
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentationItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentationItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentationItemType UNKNOWN
public static final DocumentationItemType CHAPTER
public static final DocumentationItemType CONTEXTUAL
public static final DocumentationItemType DOCUMENT
public static final DocumentationItemType ARTICLE
public static DocumentationItemType[] values()
for (DocumentationItemType c : DocumentationItemType.values()) System.out.println(c);
public static DocumentationItemType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null