public enum LinkConversion extends Enum<LinkConversion>
| Enum Constant and Description |
|---|
HTML |
MARKDOWN_EXPLICIT |
MARKDOWN_REFERENCE |
NONE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isParsed() |
boolean |
isReference() |
boolean |
isSuppressed() |
boolean |
isTextOnly() |
static LinkConversion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkConversion[] |
values()
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 nullpublic boolean isParsed()
public boolean isTextOnly()
public boolean isSuppressed()
public boolean isReference()
Copyright © 2020. All rights reserved.