|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<CountFlag> org.kuali.rice.core.api.criteria.CountFlag
public enum CountFlag
Defines possible directives for how a query is requested to produce count values in it's results.
Enum Constant Summary | |
---|---|
INCLUDE
Indicates that the row count of the query should be returned with the query results. |
|
NONE
Indicates that no row count should be returned with the query results. |
|
ONLY
Indicates that *only* the row count should be returned with the query results. |
Method Summary | |
---|---|
String |
getFlag()
Returns the value of the count flag. |
static CountFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CountFlag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CountFlag NONE
public static final CountFlag INCLUDE
public static final CountFlag ONLY
Method Detail |
---|
public static CountFlag[] values()
for (CountFlag c : CountFlag.values()) System.out.println(c);
public static CountFlag valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getFlag()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |