Skip navigation links

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

E17060-02


oracle.odi.interfaces.interactive
Enum InterfaceObjectModification.Modification

java.lang.Object
  extended by java.lang.Enum<InterfaceObjectModification.Modification>
      extended by oracle.odi.interfaces.interactive.InterfaceObjectModification.Modification

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<InterfaceObjectModification.Modification>
Enclosing class:
InterfaceObjectModification

public static enum InterfaceObjectModification.Modification
extends java.lang.Enum<InterfaceObjectModification.Modification>

Modification indicates the action performed on the ODI interface object. - OBJECT_ADDED : add object - OBJECT_REMOVED : remove object - PROPERTY_CHANGED : modify object - TEXT_ENABLED : enable text of an object

Since:
11.1.1.3.0

Enum Constant Summary
OBJECT_ADDED
          The object has been added.
OBJECT_REMOVED
          The object has been removed.
PROPERTY_CHANGED
          A property on the object has changed.
TEXT_ENABLED
          The text of the sub-component (which is an IExecutableTextHolder) has been enabled.

 

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

OBJECT_ADDED

public static final InterfaceObjectModification.Modification OBJECT_ADDED
The object has been added.

OBJECT_REMOVED

public static final InterfaceObjectModification.Modification OBJECT_REMOVED
The object has been removed.

PROPERTY_CHANGED

public static final InterfaceObjectModification.Modification PROPERTY_CHANGED
A property on the object has changed.

TEXT_ENABLED

public static final InterfaceObjectModification.Modification TEXT_ENABLED
The text of the sub-component (which is an IExecutableTextHolder) has been enabled.

Method Detail

values

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

valueOf

public static InterfaceObjectModification.Modification 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.