Skip navigation links

Oracle Enterprise Scheduler Java API Reference
11g Release 1 (11.1.1.7)
E26229-06


oracle.as.scheduler.request
Enum ImportExportResult.ImportExportStatus

java.lang.Object
  extended by java.lang.Enum<ImportExportResult.ImportExportStatus>
      extended by oracle.as.scheduler.request.ImportExportResult.ImportExportStatus

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ImportExportResult.ImportExportStatus>
Enclosing class:
ImportExportResult

public static enum ImportExportResult.ImportExportStatus
extends java.lang.Enum<ImportExportResult.ImportExportStatus>

Status of an import or export operation.


Enum Constant Summary
Error
          At least one file failed import or export.
FileError
          Error accessing the file system.
InternalError
          Internal error occurred before import was attempted.
InvalidCommitSemantics
          The CommitSemantics is not valid for the operation.
Success
          All files were successfully imported or exported.
Unsupported
          The operation is not supported by the job.

 

Method Summary
static ImportExportResult.ImportExportStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImportExportResult.ImportExportStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

Success

public static final ImportExportResult.ImportExportStatus Success
All files were successfully imported or exported.

Error

public static final ImportExportResult.ImportExportStatus Error
At least one file failed import or export. Get the exception using getError().

FileError

public static final ImportExportResult.ImportExportStatus FileError
Error accessing the file system. Errors include directory does not exist, error accessing files in the directory. No exception is available.

InternalError

public static final ImportExportResult.ImportExportStatus InternalError
Internal error occurred before import was attempted. The exception is included.

Unsupported

public static final ImportExportResult.ImportExportStatus Unsupported
The operation is not supported by the job. Import and export require that the job define a system property to request support for output files.

InvalidCommitSemantics

public static final ImportExportResult.ImportExportStatus InvalidCommitSemantics
The CommitSemantics is not valid for the operation. Transactional commit semantics is not valid with a user-provided handle.

Method Detail

values

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

valueOf

public static ImportExportResult.ImportExportStatus 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 Enterprise Scheduler Java API Reference
11g Release 1 (11.1.1.7)
E26229-06


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