private static enum JpaFinderProxy.ReturnType extends java.lang.Enum<JpaFinderProxy.ReturnType>
Enum Constant and Description |
---|
ARRAY |
COLLECTION |
PLAIN |
Modifier and Type | Method and Description |
---|---|
static JpaFinderProxy.ReturnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JpaFinderProxy.ReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JpaFinderProxy.ReturnType PLAIN
public static final JpaFinderProxy.ReturnType COLLECTION
public static final JpaFinderProxy.ReturnType ARRAY
public static JpaFinderProxy.ReturnType[] values()
for (JpaFinderProxy.ReturnType c : JpaFinderProxy.ReturnType.values()) System.out.println(c);
public static JpaFinderProxy.ReturnType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null