Skip navigation links

Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.5.0)

E17060-02


oracle.odi.domain.xrefs.expression
Enum Expression.SqlGroupType

java.lang.Object
  extended by java.lang.Enum<Expression.SqlGroupType>
      extended by oracle.odi.domain.xrefs.expression.Expression.SqlGroupType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Expression.SqlGroupType>
Enclosing class:
Expression

public static enum Expression.SqlGroupType
extends java.lang.Enum<Expression.SqlGroupType>

Type safe enumeration that represents SQL group function type an Expression can hold. An Expression can use one of the following group type:


Enum Constant Summary
CONSTANT
          SQL constant.
GROUP
          SQL group function.
NONE
          No SQL group.

 

Method Summary
static Expression.SqlGroupType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Expression.SqlGroupType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

CONSTANT

public static final Expression.SqlGroupType CONSTANT
SQL constant.

GROUP

public static final Expression.SqlGroupType GROUP
SQL group function.

NONE

public static final Expression.SqlGroupType NONE
No SQL group.

Method Detail

values

public static Expression.SqlGroupType[] 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 (Expression.SqlGroupType c : Expression.SqlGroupType.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Expression.SqlGroupType 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

Skip navigation links

Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.5.0)

E17060-02


Copyright © 2011, Oracle and/or its affiliates. All rights reserved.