eu.xtreemos.xosd.jobmng
Enum JobMng.RedirFuncs

java.lang.Object
  extended by java.lang.Enum<JobMng.RedirFuncs>
      extended by eu.xtreemos.xosd.jobmng.JobMng.RedirFuncs
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JobMng.RedirFuncs>
Enclosing class:
JobMng

private static enum JobMng.RedirFuncs
extends java.lang.Enum<JobMng.RedirFuncs>


Enum Constant Summary
addDependenceDown
           
addDependenceUp
           
addJobMetric
           
createProcess
           
deleteDependenceDown
           
deleteDependenceUp
           
exitJob
           
getJobInfo
           
getJobMetrics
           
getListOfDependences
           
getMetricsByScope
           
jobControl
           
jobWait
           
removeJobMetric
           
runJob
           
sendEvent
           
setMetricValue
           
setMonitorBuffering
           
 
Field Summary
(package private)  java.lang.String funcName
           
 
Method Summary
 java.lang.String getName()
           
static JobMng.RedirFuncs valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobMng.RedirFuncs[] 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

runJob

public static final JobMng.RedirFuncs runJob

getJobInfo

public static final JobMng.RedirFuncs getJobInfo

sendEvent

public static final JobMng.RedirFuncs sendEvent

jobControl

public static final JobMng.RedirFuncs jobControl

jobWait

public static final JobMng.RedirFuncs jobWait

exitJob

public static final JobMng.RedirFuncs exitJob

addDependenceUp

public static final JobMng.RedirFuncs addDependenceUp

addDependenceDown

public static final JobMng.RedirFuncs addDependenceDown

deleteDependenceUp

public static final JobMng.RedirFuncs deleteDependenceUp

deleteDependenceDown

public static final JobMng.RedirFuncs deleteDependenceDown

getListOfDependences

public static final JobMng.RedirFuncs getListOfDependences

getJobMetrics

public static final JobMng.RedirFuncs getJobMetrics

addJobMetric

public static final JobMng.RedirFuncs addJobMetric

removeJobMetric

public static final JobMng.RedirFuncs removeJobMetric

setMetricValue

public static final JobMng.RedirFuncs setMetricValue

setMonitorBuffering

public static final JobMng.RedirFuncs setMonitorBuffering

createProcess

public static final JobMng.RedirFuncs createProcess

getMetricsByScope

public static final JobMng.RedirFuncs getMetricsByScope
Field Detail

funcName

java.lang.String funcName
Method Detail

values

public static JobMng.RedirFuncs[] 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 (JobMng.RedirFuncs c : JobMng.RedirFuncs.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JobMng.RedirFuncs 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

getName

public java.lang.String getName()