Skip navigation links

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


oracle.as.scheduler
Enum Diagnosis.AsyncExecutionType

java.lang.Object
  extended by java.lang.Enum<Diagnosis.AsyncExecutionType>
      extended by oracle.as.scheduler.Diagnosis.AsyncExecutionType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Diagnosis.AsyncExecutionType>
Enclosing class:
Diagnosis

public static enum Diagnosis.AsyncExecutionType
extends java.lang.Enum<Diagnosis.AsyncExecutionType>

Enum of job types.


Enum Constant Summary
ASYNC_JAVA
          Asynchronous Java
PLSQL
          PL/SQL
UNKNOWN
          Unknown.

 

Method Summary
static Diagnosis.AsyncExecutionType fromString(java.lang.String asyncExecTypeStr)
          Converts a stringified async exec type into a AsyncExecutionType object.
 java.lang.String toString(java.util.Locale locale)
           
 int value()
          Returns the numeric value for the async exec type.
static Diagnosis.AsyncExecutionType valueOf(int value)
          Returns the async exec type for the given numeric value.
static Diagnosis.AsyncExecutionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Diagnosis.AsyncExecutionType[] 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

UNKNOWN

public static final Diagnosis.AsyncExecutionType UNKNOWN
Unknown.

PLSQL

public static final Diagnosis.AsyncExecutionType PLSQL
PL/SQL

ASYNC_JAVA

public static final Diagnosis.AsyncExecutionType ASYNC_JAVA
Asynchronous Java

Method Detail

values

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

valueOf

public static Diagnosis.AsyncExecutionType 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:
IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()
Returns the numeric value for the async exec type.
Returns:
value for this type

valueOf

public static Diagnosis.AsyncExecutionType valueOf(int value)
Returns the async exec type for the given numeric value.
Parameters:
value - to convert to async execution type
Returns:
associated async exec type

fromString

public static Diagnosis.AsyncExecutionType fromString(java.lang.String asyncExecTypeStr)
Converts a stringified async exec type into a AsyncExecutionType object.
Parameters:
asyncExecTypeStr -
Returns:
the async exec type derived from asyncExecTypeStr or AsyncExecutionType.Unknown if the conversion could not be made.

toString

public java.lang.String toString(java.util.Locale locale)

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.