Skip navigation links

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

E17060-02


oracle.odi.setup
Enum IRepositoryUpgradeCallback.UpgradeStatus

java.lang.Object
  extended by java.lang.Enum<IRepositoryUpgradeCallback.UpgradeStatus>
      extended by oracle.odi.setup.IRepositoryUpgradeCallback.UpgradeStatus

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IRepositoryUpgradeCallback.UpgradeStatus>
Enclosing interface:
IRepositoryUpgradeCallback

public static enum IRepositoryUpgradeCallback.UpgradeStatus
extends java.lang.Enum<IRepositoryUpgradeCallback.UpgradeStatus>

Upgrade status information

Since:
11.1.1.5.0

Enum Constant Summary
ALREADY_UPTODATE
          The repository was already up to date before the upgrade.
CANNOT_CONNECT
          The repository was not accessible.
INVALID_STATE
          The repository was not upgraded because the repository is flagged an upgrade was already running or a previous repository upgrade failed
UPGRADE_ERROR
          An error occurred during the UPGRADE.
UPGRADED_SUCCESFULLY
          Upgrade done successfully

 

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

UPGRADED_SUCCESFULLY

public static final IRepositoryUpgradeCallback.UpgradeStatus UPGRADED_SUCCESFULLY
Upgrade done successfully

ALREADY_UPTODATE

public static final IRepositoryUpgradeCallback.UpgradeStatus ALREADY_UPTODATE
The repository was already up to date before the upgrade.

INVALID_STATE

public static final IRepositoryUpgradeCallback.UpgradeStatus INVALID_STATE
The repository was not upgraded because the repository is flagged an upgrade was already running or a previous repository upgrade failed

CANNOT_CONNECT

public static final IRepositoryUpgradeCallback.UpgradeStatus CANNOT_CONNECT
The repository was not accessible. Either because it was not reachable or because the jdbc driver was not available. Look at the UpgradeInfo#getEncounteredException() to get more details about the error encountered.

UPGRADE_ERROR

public static final IRepositoryUpgradeCallback.UpgradeStatus UPGRADE_ERROR
An error occurred during the UPGRADE.

Method Detail

values

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

valueOf

public static IRepositoryUpgradeCallback.UpgradeStatus 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.