| java.lang.Object org.griphyn.vdl.classes.Executable
Executable | public class Executable (Code) | | This class is a leftover from an earlier version, and now solely
here for the purposes of providing the Condor universe constants.
author: Jens-S. Vöckler author: Yong Zhao version: $Revision: 50 $ |
Field Summary | |
final public static int | CONDOR_GLOBUS Condor globus universe to talk to a GRAM system. | final public static int | CONDOR_JAVA | final public static int | CONDOR_MPI | final public static int | CONDOR_PVM | final public static int | CONDOR_SCHEDULER Condor scheduler universe to run on the submit host. | final public static int | CONDOR_STANDARD Condor standard universe to run condor_compiled jobs. | final public static int | CONDOR_VANILLA Condor vanilla universe to run unmodified jobs. |
Method Summary | |
public static boolean | isInRange(int x) Predicate to determine, if an integer is within the valid range for
Condor universes.
Parameters: x - is the integer to test for in-intervall. | public static String | toString(int x) Converts an integer into the symbolic Condor universe represented by
the constant. |
CONDOR_GLOBUS | final public static int CONDOR_GLOBUS(Code) | | Condor globus universe to talk to a GRAM system.
|
CONDOR_JAVA | final public static int CONDOR_JAVA(Code) | | Condor Java universe to do what?
|
CONDOR_MPI | final public static int CONDOR_MPI(Code) | | Condor MPI universe to do what?
|
CONDOR_PVM | final public static int CONDOR_PVM(Code) | | Condor PVM universe to do what?
|
CONDOR_SCHEDULER | final public static int CONDOR_SCHEDULER(Code) | | Condor scheduler universe to run on the submit host.
|
CONDOR_STANDARD | final public static int CONDOR_STANDARD(Code) | | Condor standard universe to run condor_compiled jobs.
|
CONDOR_VANILLA | final public static int CONDOR_VANILLA(Code) | | Condor vanilla universe to run unmodified jobs.
|
isInRange | public static boolean isInRange(int x)(Code) | | Predicate to determine, if an integer is within the valid range for
Condor universes.
Parameters: x - is the integer to test for in-intervall. true, if the integer satisfies Executable.CONDOR_VANILLA≤ x ≤ Executable.CONDOR_MPI, false otherwise. |
toString | public static String toString(int x)(Code) | | Converts an integer into the symbolic Condor universe represented by
the constant.
Parameters: x - is the integer with the universe to symbolically convert a string with the symbolic universe name, or null, if theconstant is out of range. |
|
|