| Enum Constant and Description |
|---|
ASCIIDOC |
COFFEE |
LESS |
LESS_MAP |
MARKDOWN |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
compile(java.nio.file.Path path,
java.lang.String content) |
static Compiler |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Compiler[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Compiler COFFEE
public static final Compiler MARKDOWN
public static final Compiler LESS
public static final Compiler LESS_MAP
public static final Compiler ASCIIDOC
public static final Compiler NONE
public static Compiler[] values()
for (Compiler c : Compiler.values()) System.out.println(c);
public static Compiler valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static java.lang.String compile(java.nio.file.Path path,
java.lang.String content)
Copyright © 2013. All Rights Reserved.