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