Skip navigation links

Oracle Role Manager Java API Reference
10g (10.1.4)
E12031-02


oracle.iam.rm.client
Enum Operation.Type

java.lang.Object
  extended by java.lang.Enum<Operation.Type>
      extended by oracle.iam.rm.client.Operation.Type

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Operation.Type>
Enclosing interface:
Operation

public static enum Operation.Type
extends java.lang.Enum<Operation.Type>

Gets an enumeration of possible operation types.


Enum Constant Summary
TYPE_BUSINESS_TASK
          Type for a business transaction operation.
TYPE_LOOKUP
          Type for a look-up operation.
TYPE_SEARCH
          Type for a search operation.
TYPE_SUPPLEMENTAL
          Type for a supplemental operation.

 

Method Summary
static Operation.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Operation.Type[] 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

TYPE_LOOKUP

public static final Operation.Type TYPE_LOOKUP
Type for a look-up operation.
See Also:
LookupOperation

TYPE_SEARCH

public static final Operation.Type TYPE_SEARCH
Type for a search operation.
See Also:
SearchOperation

TYPE_BUSINESS_TASK

public static final Operation.Type TYPE_BUSINESS_TASK
Type for a business transaction operation.
See Also:
BusinessTransactionOperation

TYPE_SUPPLEMENTAL

public static final Operation.Type TYPE_SUPPLEMENTAL
Type for a supplemental operation.
See Also:
SupplementalOperation

Method Detail

values

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

valueOf

public static Operation.Type 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)
E12031-02


Copyright © 2007, 2008 Oracle. All Rights Reserved.