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