Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.6.0)

E13403-07

oracle.javatools.db.sql
Enum GroupByExpression.GroupingType

java.lang.Object
  extended by java.lang.Enum<GroupByExpression.GroupingType>
      extended by oracle.javatools.db.sql.GroupByExpression.GroupingType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GroupByExpression.GroupingType>
Enclosing class:
GroupByExpression

public static enum GroupByExpression.GroupingType
extends java.lang.Enum<GroupByExpression.GroupingType>


Enum Constant Summary
CUBE
           
GROUPING_SETS
           
ROLLUP
           
 
Method Summary
static GroupByExpression.GroupingType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GroupByExpression.GroupingType[] 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

ROLLUP

public static final GroupByExpression.GroupingType ROLLUP

CUBE

public static final GroupByExpression.GroupingType CUBE

GROUPING_SETS

public static final GroupByExpression.GroupingType GROUPING_SETS
Method Detail

values

public static GroupByExpression.GroupingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GroupByExpression.GroupingType c : GroupByExpression.GroupingType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GroupByExpression.GroupingType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.6.0)

E13403-07

Copyright © 1997, 2011, Oracle. All rights reserved.