public enum ResultSetProcessorType extends java.lang.Enum<ResultSetProcessorType>
Enum Constant and Description |
---|
AGGREGATED_GROUPED |
AGGREGATED_UNGROUPED |
FULLYAGGREGATED_GROUPED |
FULLYAGGREGATED_GROUPED_ROLLUP |
FULLYAGGREGATED_UNGROUPED |
HANDTHROUGH |
UNAGGREGATED_UNGROUPED |
Modifier and Type | Method and Description |
---|---|
boolean |
isAggregated() |
boolean |
isGrouped() |
boolean |
isUnaggregatedUngrouped() |
static ResultSetProcessorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResultSetProcessorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultSetProcessorType HANDTHROUGH
public static final ResultSetProcessorType UNAGGREGATED_UNGROUPED
public static final ResultSetProcessorType FULLYAGGREGATED_UNGROUPED
public static final ResultSetProcessorType AGGREGATED_UNGROUPED
public static final ResultSetProcessorType FULLYAGGREGATED_GROUPED
public static final ResultSetProcessorType FULLYAGGREGATED_GROUPED_ROLLUP
public static final ResultSetProcessorType AGGREGATED_GROUPED
public static ResultSetProcessorType[] values()
for (ResultSetProcessorType c : ResultSetProcessorType.values()) System.out.println(c);
public static ResultSetProcessorType 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 nullpublic boolean isAggregated()
public boolean isGrouped()
public boolean isUnaggregatedUngrouped()