public static enum SpiQuery.Type extends Enum<SpiQuery.Type>
| Enum Constant and Description |
|---|
BEAN
Find by Id or unique returning a single bean.
|
ID_LIST
Find the Id's.
|
LIST
Find returning a List.
|
MAP
Find returning a Map.
|
ROWCOUNT
Find rowCount.
|
SET
Find returning a Set.
|
SUBQUERY
A subquery used as part of a where clause.
|
| Modifier and Type | Method and Description |
|---|---|
static SpiQuery.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpiQuery.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpiQuery.Type BEAN
public static final SpiQuery.Type LIST
public static final SpiQuery.Type SET
public static final SpiQuery.Type MAP
public static final SpiQuery.Type ID_LIST
public static final SpiQuery.Type ROWCOUNT
public static final SpiQuery.Type SUBQUERY
public static SpiQuery.Type[] values()
for (SpiQuery.Type c : SpiQuery.Type.values()) System.out.println(c);
public static SpiQuery.Type 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 © 2014. All Rights Reserved.