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

E17060-01

oracle.odi.interfaces.interactive.support.actions
Enum InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator

java.lang.Object
  extended by java.lang.Enum<InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator>
      extended by oracle.odi.interfaces.interactive.support.actions.InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator>
Enclosing class:
InterfaceActionOnStagingAreaSetIndicator

public static enum InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator
extends java.lang.Enum<InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator>

Specifies one of the boolean indicators that can be set to true or false for the staging area.

Since:
11.1.1.3.0

Enum Constant Summary
COMMIT_ON_WORK
          Not used.
DISTINCT_ROW
          Represents an indicator that, if set to true, specifies that a distinct clause will be added to the stage table loading, to eliminate duplicate rows.
ON_TARGET
          Represents an indicator that, if set to true, specifies that the target schema will be used for staging.
ON_USER_DATABASE_SCHEMA
          Represents an indicator that, if set to true, specifies that the temporary target datastore will reside on the main user database schema specified in the physical schema for the target datastore.
 
Method Summary
static InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator[] 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

COMMIT_ON_WORK

public static final InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator COMMIT_ON_WORK
Not used.


DISTINCT_ROW

public static final InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator DISTINCT_ROW
Represents an indicator that, if set to true, specifies that a distinct clause will be added to the stage table loading, to eliminate duplicate rows.


ON_TARGET

public static final InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator ON_TARGET
Represents an indicator that, if set to true, specifies that the target schema will be used for staging.


ON_USER_DATABASE_SCHEMA

public static final InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator ON_USER_DATABASE_SCHEMA
Represents an indicator that, if set to true, specifies that the temporary target datastore will reside on the main user database schema specified in the physical schema for the target datastore. If set to false, specifies that the temporary target datastore will reside on the temporary work schema specified in the physical schema for target datastore.

Method Detail

valueOf

public static InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator 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

values

public static InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator[] 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 (InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator c : InterfaceActionOnStagingAreaSetIndicator.StagingAreaIndicator.values())
    System.out.println(c);

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

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

E17060-01

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