public static enum RenderingResults.Status extends Enum<RenderingResults.Status>
| Enum Constant and Description |
|---|
ERROR |
MUST_REDIRECT |
OK |
| Modifier and Type | Method and Description |
|---|---|
static RenderingResults.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingResults.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingResults.Status OK
public static final RenderingResults.Status MUST_REDIRECT
public static final RenderingResults.Status ERROR
public static RenderingResults.Status[] values()
for (RenderingResults.Status c : RenderingResults.Status.values()) System.out.println(c);
public static RenderingResults.Status 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 © 2007-2012. All Rights Reserved.