public static enum ActionResultRepresentation.ResultType extends Enum<ActionResultRepresentation.ResultType>
| Enum Constant and Description |
|---|
DOMAIN_OBJECT |
LIST |
SCALAR_VALUE |
VOID |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
boolean |
isVoid() |
static ActionResultRepresentation.ResultType |
lookup(String value) |
static ActionResultRepresentation.ResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionResultRepresentation.ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionResultRepresentation.ResultType DOMAIN_OBJECT
public static final ActionResultRepresentation.ResultType LIST
public static final ActionResultRepresentation.ResultType SCALAR_VALUE
public static final ActionResultRepresentation.ResultType VOID
public static ActionResultRepresentation.ResultType[] values()
for (ActionResultRepresentation.ResultType c : ActionResultRepresentation.ResultType.values()) System.out.println(c);
public static ActionResultRepresentation.ResultType 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 nullpublic static ActionResultRepresentation.ResultType lookup(String value)
public boolean isVoid()
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.