Uses of Class
condor.classad.Constant

Packages that use Constant
condor.classad Java implementation of Condor "Classified Advertisements".  
 

Uses of Constant in condor.classad
 

Fields in condor.classad declared as Constant
static Constant Constant.Undef
          A default undefined constant
static Constant Constant.CyclicRef
          An undefined constant that represents the result a attempting to resovle a cyclic attribute reference as in [a=b;b=a].
static Constant Constant.Error
          A default error constant
static Constant Constant.True
          The unique boolean constant true
static Constant Constant.False
          The unique boolean Constant false
 

Methods in condor.classad that return Constant
static Constant Constant.getInstance(int value)
          Returns the unique integer constant with value "value", creating one if necessary.
static Constant Constant.getInstance(double value)
          Returns the unique real constant with value "value", creating one if necessary.
static Constant Constant.getInstance(String value)
          Returns the unique String constant with value "value", creating one if necessary.
static Constant Constant.getInstance(char[] buf, int start, int stop)
          Create a String Constant from a character array, processing backslash escapes.
static Constant Constant.getInstance(Date value)
          Create an absolute time Constant.
static Constant Constant.getInstance(long value)
          Returns the unique time constant with value "value", creating one if necessary.
static Constant Constant.error(String msg)
          Convenience function: Create an ERROR constant containing a particular message.
static Constant Constant.undefined(String msg)
          Convenience function: Create an UNDEFINED constant containing a particular message.
static Constant Constant.bool(boolean b)
          Convenience function: Convert a boolean to Constant.True or Constant.False.
static Constant ClassAd.constant(int i)
          Create a constant expression from an integer value.
static Constant ClassAd.constant(double x)
          Create a constant expression from a real value.
static Constant ClassAd.constant(String s)
          Create a constant expression from a String value.