public static enum Grouping.TotalCount extends Enum<Grouping.TotalCount>
| Enum Constant and Description | 
|---|
| groupedComputations should be based on groups. | 
| ungroupedComputations should be based on plain documents, so not taking grouping into account. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Grouping.TotalCount | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Grouping.TotalCount[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Grouping.TotalCount grouped
public static final Grouping.TotalCount ungrouped
public static Grouping.TotalCount[] values()
for (Grouping.TotalCount c : Grouping.TotalCount.values()) System.out.println(c);
public static Grouping.TotalCount 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 © 2000-2013 Apache Software Foundation. All Rights Reserved.