Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.2)
E26229-03


oracle.as.scheduler
Enum JobType.ExecutionType

java.lang.Object
  extended by java.lang.Enum<JobType.ExecutionType>
      extended by oracle.as.scheduler.JobType.ExecutionType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JobType.ExecutionType>
Enclosing class:
JobType

public static enum JobType.ExecutionType
extends java.lang.Enum<JobType.ExecutionType>

Enum of the basic execution types.


Enum Constant Summary
JAVA_TYPE
          Job exectable is a Java class that is run in the container.
PROCESS_TYPE
          Job executable is binary executable or script that is run as a separate forked off process.
SQL_TYPE
          Job executable is a database PLSQL stored procedure that is run in database server.

 

Method Summary
static JobType.ExecutionType from(javax.management.openmbean.CompositeData cd)
           
 javax.management.openmbean.CompositeData toCompositeData(javax.management.openmbean.CompositeType ct)
           
static javax.management.openmbean.CompositeType toCompositeType()
          Returns the CompositeType that describes this model specific class
 java.lang.String toString(java.util.Locale locale)
           
 java.lang.String value()
          Returns the value associated with this enum object.
static JobType.ExecutionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobType.ExecutionType[] 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

JAVA_TYPE

public static final JobType.ExecutionType JAVA_TYPE
Job exectable is a Java class that is run in the container.

SQL_TYPE

public static final JobType.ExecutionType SQL_TYPE
Job executable is a database PLSQL stored procedure that is run in database server.

PROCESS_TYPE

public static final JobType.ExecutionType PROCESS_TYPE
Job executable is binary executable or script that is run as a separate forked off process.

Method Detail

values

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

valueOf

public static JobType.ExecutionType 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 java.lang.String value()
Returns the value associated with this enum object.
Returns:
the associated value

toCompositeType

public static javax.management.openmbean.CompositeType toCompositeType()
Returns the CompositeType that describes this model specific class

toCompositeData

public javax.management.openmbean.CompositeData toCompositeData(javax.management.openmbean.CompositeType ct)

from

public static JobType.ExecutionType from(javax.management.openmbean.CompositeData cd)
                                  throws java.lang.IllegalArgumentException
Throws:
java.lang.IllegalArgumentException

toString

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

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.2)
E26229-03


Copyright © 2008, 2012 Oracle. All rights reserved.