@Deprecated public enum LinkConversion extends Enum<LinkConversion>
| Enum Constant and Description |
|---|
HTML
Deprecated.
|
MARKDOWN_EXPLICIT
Deprecated.
|
MARKDOWN_REFERENCE
Deprecated.
|
NONE
Deprecated.
|
TEXT
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static LinkConversion |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static LinkConversion[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkConversion NONE
public static final LinkConversion MARKDOWN_EXPLICIT
public static final LinkConversion MARKDOWN_REFERENCE
public static final LinkConversion TEXT
public static final LinkConversion HTML
public static LinkConversion[] values()
for (LinkConversion c : LinkConversion.values()) System.out.println(c);
public static LinkConversion 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.