public enum TagType extends Enum<TagType>
| Enum Constant and Description |
|---|
CODE |
DOCUMENT |
GIST |
HEADER |
IMAGE |
ITALIC_TEXT |
LINK |
NOTE |
ORDERED_LIST |
PARAGRAPH |
RICH_TEXT |
STRONG_TEXT |
TERMINAL |
TEXT |
UNORDERED_LIST |
| Modifier and Type | Method and Description |
|---|---|
static TagType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagType DOCUMENT
public static final TagType PARAGRAPH
public static final TagType IMAGE
public static final TagType HEADER
public static final TagType UNORDERED_LIST
public static final TagType ORDERED_LIST
public static final TagType TEXT
public static final TagType STRONG_TEXT
public static final TagType ITALIC_TEXT
public static final TagType NOTE
public static final TagType LINK
public static final TagType RICH_TEXT
public static final TagType CODE
public static final TagType TERMINAL
public static final TagType GIST
public static TagType[] values()
for (TagType c : TagType.values()) System.out.println(c);
public static TagType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.