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