public enum CountFlag extends Enum<CountFlag>
| Enum Constant and Description | 
|---|
| INCLUDEIndicates that the row count of the query should be returned with the query results. | 
| NONEIndicates that no row count should be returned with the query results. | 
| ONLYIndicates that *only* the row count should be returned with the query results. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
public static final CountFlag NONE
public static final CountFlag INCLUDE
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 nameNullPointerException - if the argument is nullCopyright © 2005–2014 The Kuali Foundation. All rights reserved.