Skip navigation links

Oracle Role Manager Java API Reference
10g (10.1.4)
E14613-01


oracle.iam.rm.temporal.query
Enum ColumnDef.AggregateFunction

java.lang.Object
  extended by java.lang.Enum<ColumnDef.AggregateFunction>
      extended by oracle.iam.rm.temporal.query.ColumnDef.AggregateFunction

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ColumnDef.AggregateFunction>
Enclosing class:
ColumnDef

public static enum ColumnDef.AggregateFunction
extends java.lang.Enum<ColumnDef.AggregateFunction>

Enumeration of types of supported aggregate functions.


Enum Constant Summary
COUNT
          Enumeration representing the count() aggregate function.

 

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

 

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

 

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

 

Enum Constant Detail

COUNT

public static final ColumnDef.AggregateFunction COUNT
Enumeration representing the count() aggregate function.

Method Detail

values

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

valueOf

public static ColumnDef.AggregateFunction 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

Skip navigation links

Oracle Role Manager Java API Reference
10g (10.1.4)
E14613-01


Copyright © 2008, 2009 Oracle. All Rights Reserved.