public static enum DocReturn.Structure extends Enum<DocReturn.Structure>
| Enum Constant and Description |
|---|
ARRAY
DocReturn.type() is wrapped into array |
MAP
DocReturn.type() is wrapped into map as value type (key type
is string) |
OBJECT
DocReturn.type() is not wrapped |
| Modifier and Type | Method and Description |
|---|---|
static DocReturn.Structure |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocReturn.Structure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocReturn.Structure OBJECT
DocReturn.type() is not wrappedpublic static final DocReturn.Structure ARRAY
DocReturn.type() is wrapped into arraypublic static final DocReturn.Structure MAP
DocReturn.type() is wrapped into map as value type (key type
is string)public static DocReturn.Structure[] values()
for (DocReturn.Structure c : DocReturn.Structure.values()) System.out.println(c);
public static DocReturn.Structure 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 © 2015. All rights reserved.