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

E17060-01

oracle.odi.interfaces.data
Enum CheckResponse.Response

java.lang.Object
  extended by java.lang.Enum<CheckResponse.Response>
      extended by oracle.odi.interfaces.data.CheckResponse.Response
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CheckResponse.Response>
Enclosing class:
CheckResponse

public static enum CheckResponse.Response
extends java.lang.Enum<CheckResponse.Response>

An enumeration of the possible response results from checking an expression.


Enum Constant Summary
CONNECTION_NOT_FOUND_ERROR
          Not used.
COULD_NOT_CONNECT_ERROR
          The required database connection could not be made.
DB_ERROR
          A database error occurred when checking the expression.
INTERNAL_ERROR
          An internal error occurred when checking the expression.
OK
          The expression is correct.
 
Method Summary
static CheckResponse.Response valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CheckResponse.Response[] 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

CONNECTION_NOT_FOUND_ERROR

public static final CheckResponse.Response CONNECTION_NOT_FOUND_ERROR
Not used.


COULD_NOT_CONNECT_ERROR

public static final CheckResponse.Response COULD_NOT_CONNECT_ERROR
The required database connection could not be made.


DB_ERROR

public static final CheckResponse.Response DB_ERROR
A database error occurred when checking the expression.


INTERNAL_ERROR

public static final CheckResponse.Response INTERNAL_ERROR
An internal error occurred when checking the expression.


OK

public static final CheckResponse.Response OK
The expression is correct.

Method Detail

valueOf

public static CheckResponse.Response 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 CheckResponse.Response[] 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 (CheckResponse.Response c : CheckResponse.Response.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.