public enum ReturnRepresentation extends Enum<ReturnRepresentation>
| Enum Constant and Description |
|---|
MINIMAL |
NONE |
REPRESENTATION |
| Modifier and Type | Method and Description |
|---|---|
static ReturnRepresentation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnRepresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReturnRepresentation REPRESENTATION
public static final ReturnRepresentation MINIMAL
public static final ReturnRepresentation NONE
public static ReturnRepresentation[] values()
for (ReturnRepresentation c : ReturnRepresentation.values()) System.out.println(c);
public static ReturnRepresentation 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 © 2013–2015 The Apache Software Foundation. All rights reserved.