public static enum RenderResult.Type extends Enum<RenderResult.Type>
| Enum Constant and Description |
|---|
DETACH
Rendering has encountered an incomplete future.
|
DONE
Rendering has completed successfully.
|
LIMITED
The
AdvisingAppendable that is being rendered into has indicated that its soft limit has been reached. |
| Modifier and Type | Method and Description |
|---|---|
static RenderResult.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderResult.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderResult.Type LIMITED
AdvisingAppendable that is being rendered into has indicated that its soft limit has been reached.public static final RenderResult.Type DETACH
public static final RenderResult.Type DONE
public static RenderResult.Type[] values()
for (RenderResult.Type c : RenderResult.Type.values()) System.out.println(c);
public static RenderResult.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 null