|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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(boolean value)
Returns the boolean 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)
Creates a String Constant from a character array, processing backslash escapes. |
static Constant |
Constant.getInstance(Date date)
Returns the unique absolute time constant corresponding to date "date", in the local timezone, creating one if necessary. |
static Constant |
Constant.getInstance(Date date,
int tz)
Returns the unique absolute time constant corresponding to date "date", in the indicated timezone, creating one if necessary. |
static Constant |
Constant.getInstance(long t,
int z)
Returns the unique absolute time constant with time "t" and offset "z", creating one if necessary. |
static Constant |
Constant.getInstance(long value)
Returns the unique relative time constant with value "value", creating one if necessary. |
static Constant |
Constant.error(String msg)
Convenience function that creates an ERROR constant containing a particular message. |
static Constant |
Constant.undefined(String msg)
Convenience function that creates an UNDEFINED constant containing a particular message. |
static Constant |
Constant.bool(boolean b)
Convenience function that converts a boolean to Constant.TRUE or Constant.FALSE. |
static Constant |
Constant.stringToRelTime(String s)
Parses a relative time specification. |
static Constant |
Constant.stringToAbsTime(String s)
Parses an absolute time specification. |
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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |