public enum RenderAs extends Enum<RenderAs>
| Enum Constant and Description |
|---|
DEFINITION_LIST |
FENCED_CODE |
SECTIONS |
| Modifier and Type | Method and Description |
|---|---|
static RenderAs |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderAs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderAs FENCED_CODE
public static final RenderAs SECTIONS
public static final RenderAs DEFINITION_LIST
public static RenderAs[] values()
for (RenderAs c : RenderAs.values()) System.out.println(c);
public static RenderAs 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 © 2017. All rights reserved.