public static enum Renderer.Type extends Enum<Renderer.Type>
| Enum Constant and Description |
|---|
BODY
A body typed renderer renders the actual content of a block.
|
HEAD
Rendering for 'HEAD' typically happens in the <head> block of HTML, and can
e.g.
|
NOT
Not yet rendering
|
| Modifier and Type | Method and Description |
|---|---|
Renderer |
getEmpty(Block block)
Returns a renderer that does nothing.
|
static Renderer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Renderer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Renderer.Type NOT
public static final Renderer.Type HEAD
public static final Renderer.Type BODY
public static Renderer.Type[] values()
for (Renderer.Type c : Renderer.Type.values()) System.out.println(c);
public static Renderer.Type 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 nullMMBase 1.9-SNAPSHOT - ${javadoctimestamp}