A B C D E F G H I L M N O P Q R S T U V W

A

ABSOLUTE_TIME - Static variable in class condor.classad.Expr
A type flag indicating that this is an absolute time value
AND - Static variable in class condor.classad.Expr
Token ID corresponding to the operator &&
arg1 - Variable in class condor.classad.Op
The first (or only) operand.
arg2 - Variable in class condor.classad.Op
The second operand; null if the operator is unary.
ATTRIBUTE - Static variable in class condor.classad.Expr
A type flag indicating that this is an attribute reference
attributes() - Method in class condor.classad.RecordExpr
Enumerate the attribute names.
AttrRef - class condor.classad.AttrRef.
A reference to another attribute.
AttrRef(int) - Constructor for class condor.classad.AttrRef
Create a new AttrRef.

B

bind(RecordExpr, RecordExpr) - Static method in class condor.classad.ClassAd
Wrap a pair of ads in an environment and context such that inside ad1, self refers to ad1, other refers to ad2, and any other attribute is searched for first in ad1 and then in ad2 (and similarly, with ad1 and ad2 interchanged).
BIT_COMPLEMENT - Static variable in class condor.classad.Expr
Token ID corresponding to the operator unary ~
BITAND - Static variable in class condor.classad.Expr
Token ID corresponding to the operator &
BITOR - Static variable in class condor.classad.Expr
Token ID corresponding to the operator |
BITXOR - Static variable in class condor.classad.Expr
Token ID corresponding to the operator ^
BOOLEAN - Static variable in class condor.classad.Expr
A type flag indicating that this is a boolean value
BRIEF - Static variable in class condor.classad.Expr
A combination of option flags for toString().

C

CALL - Static variable in class condor.classad.Expr
A type flag indicating that this is a function call
ClassAd - class condor.classad.ClassAd.
A library of handy methods for manipulating classad expressions.
ClassAdParser - class condor.classad.ClassAdParser.
A factory for creating classad expressions (instances of Expr), by parsing a textual representation.
ClassAdParser(InputStream) - Constructor for class condor.classad.ClassAdParser
Create a parser to parse input from an InputStream.
ClassAdParser(Reader) - Constructor for class condor.classad.ClassAdParser
Create a parser to parse input from a Reader.
ClassAdParser(String) - Constructor for class condor.classad.ClassAdParser
Create a parser to parse a string.
ClassAdReader - class condor.classad.ClassAdReader.
Convert a serialized classified advertisement into a stream of characters.
ClassAdReader(CedarInputStream) - Constructor for class condor.classad.ClassAdReader
Create a new ClassAdReader.
close() - Method in class condor.classad.ClassAdReader
Throw away all remaining input and close the underlying input stream.
COMPACT - Static variable in class condor.classad.Expr
A combination of option flags for toString().
COND - Static variable in class condor.classad.Expr
A type flag indicating that this is a conditional expression
CondExpr - class condor.classad.CondExpr.
A conditional expression.
CondExpr(Expr, Expr, Expr) - Constructor for class condor.classad.CondExpr
Construct a conditional expression from its three components.
condor.classad - package condor.classad
 
Constant - class condor.classad.Constant.
A constant (Integer, Real, etc.).
constant(double) - Static method in class condor.classad.ClassAd
Create a constant expression from a real value.
constant(int) - Static method in class condor.classad.ClassAd
Create a constant expression from an integer value.
constant(String) - Static method in class condor.classad.ClassAd
Create a constant expression from a String value.
Context - class condor.classad.Context.
A context for evaluating ClassAd expressions.
Context(RecordExpr) - Constructor for class condor.classad.Context
Create a new context.

D

db(boolean, Object) - Static method in class condor.classad.Expr
Debugging print.
db(Object) - Static method in class condor.classad.Expr
Debugging print.
dblevel - Static variable in class condor.classad.Expr
Flag to control level of verbosity of debugging input.
DIFFERENT - Static variable in class condor.classad.Expr
Token ID corresponding to the operator isnt
disableFormatFlags(int) - Static method in class condor.classad.Expr
Turn off options for converting expressions to strings.
DIV - Static variable in class condor.classad.Expr
Token ID corresponding to the operator /

E

enableFormatFlags(int) - Static method in class condor.classad.Expr
Turn on options for converting expressions to strings.
enableTracing(boolean) - Method in class condor.classad.ClassAdParser
Control whether the actions of the parser are traced.
EQUAL - Static variable in class condor.classad.Expr
Token ID corresponding to the operator ==
Error - Static variable in class condor.classad.Constant
A default error constant
ERROR - Static variable in class condor.classad.Expr
A type flag indicating that this is an error value
eval(Context) - Method in class condor.classad.Expr
Evaluate this Expr.
eval(Context, String[]) - Static method in class condor.classad.ClassAd
Evaluate a selection from a ClassAd in a given evaluation context.
eval(RecordExpr, String[]) - Static method in class condor.classad.ClassAd
Evaluate a selection from a ClassAd.
eval(String, RecordExpr, RecordExpr) - Static method in class condor.classad.ClassAd
Evaluate an attribute of a ClassAd in an environment consisting of a pair of ads.
Expr - class condor.classad.Expr.
A node of an expression tree.

F

False - Static variable in class condor.classad.Constant
The unique boolean Constant false
formatFlags - Static variable in class condor.classad.Expr
Flags to control the formatting of expressions by toString().
formatIndent - Static variable in class condor.classad.Expr
A standing indent for all expressions whose string representation spans multiple lines.
fromClause - Variable in class condor.classad.Query
The "from" clause (as a string).
FuncCall - class condor.classad.FuncCall.
A function call.
FuncCall(String, Vector) - Constructor for class condor.classad.FuncCall
Create a function node from a name and a vector of paramters.

G

getByteCount() - Method in class condor.classad.ClassAdReader
Return the number of "raw" bytes read from the original input stream, including Cedar overhead.
getFormatFlags() - Static method in class condor.classad.Expr
Get existing options for converting expressions to strings.
getInstance(char[], int, int) - Static method in class condor.classad.Constant
Create a String Constant from a character array, processing backslash escapes.
getInstance(Date) - Static method in class condor.classad.Constant
Create an absolute time Constant.
getInstance(double) - Static method in class condor.classad.Constant
Returns the unique real constant with value "value", creating one if necessary.
getInstance(int) - Static method in class condor.classad.Constant
Returns the unique integer constant with value "value", creating one if necessary.
getInstance(long) - Static method in class condor.classad.Constant
Returns the unique time constant with value "value", creating one if necessary.
getInstance(String) - Static method in class condor.classad.Constant
Returns the unique String constant with value "value", creating one if necessary.
getNextToken() - Method in class condor.classad.ClassAdParser
Get and remove the "lookahead" token: the first token not yet consumed by the parser.
GetOpt - class condor.classad.GetOpt.
Java version of GNU getopt
GetOpt.LongOption - class condor.classad.GetOpt.LongOption.
A record used in a table of option descriptions passed to a constructor of GetOpt.
GetOpt.LongOption(String, int, char) - Constructor for class condor.classad.GetOpt.LongOption
Create a LongOption from its components.
GetOpt(String, String[], String) - Constructor for class condor.classad.GetOpt
Create a new option parser.
GetOpt(String, String[], String, GetOpt.LongOption[]) - Constructor for class condor.classad.GetOpt
Create a new option parser.
GetOpt(String, String[], String, GetOpt.LongOption[], boolean) - Constructor for class condor.classad.GetOpt
Create a new option parser.
getParent(RecordExpr) - Method in class condor.classad.Context
Look for a cached parent binding.
getValue(Expr) - Method in class condor.classad.Context
Look for a cached evaluation.
GREATER - Static variable in class condor.classad.Expr
Token ID corresponding to the operator >
GREATER_EQ - Static variable in class condor.classad.Expr
Token ID corresponding to the operator >=

H

hasArg - Variable in class condor.classad.GetOpt.LongOption
A flag, one of GetOpt.NO_ARG, GetOpt.REQ_ARG, or GetOpt.OPT_ARG

I

insertAttribute(CiString, Expr) - Method in class condor.classad.RecordExpr
Add an attribute (replacing previous value if any)
insertAttribute(Expr) - Method in class condor.classad.RecordExpr
Add an attribute with a generated name.
insertAttribute(String, Expr) - Method in class condor.classad.RecordExpr
Add an attribute (replacing previous value if any)
INTEGER - Static variable in class condor.classad.Expr
A type flag indicating that this is an integer value
intValue() - Method in class condor.classad.Constant
Get the integer value of this Constant if possible.
isConstant() - Method in class condor.classad.Expr
Indicate whether this is a constant.
isNormalForm() - Method in class condor.classad.Expr
Indicate whether this is a normal-form expression.

L

LEFT_SHIFT - Static variable in class condor.classad.Expr
Token ID corresponding to the operator <<
LESS - Static variable in class condor.classad.Expr
Token ID corresponding to the operator <
LESS_EQ - Static variable in class condor.classad.Expr
Token ID corresponding to the operator <=
LIST - Static variable in class condor.classad.Expr
A type flag indicating that this is a list
ListExpr - class condor.classad.ListExpr.
A list of expressions.
ListExpr(Vector) - Constructor for class condor.classad.ListExpr
Construct a list from a vector of expressions.
longind - Variable in class condor.classad.GetOpt
Index in longopts of a long-named option found.
lookup(CiString) - Method in class condor.classad.RecordExpr
Find the attribute with the given name.
lookup(String) - Method in class condor.classad.RecordExpr
Find the attribute with the given name.

M

main(String[]) - Static method in class condor.classad.GetOpt
Main program for testing.
mark() - Method in class condor.classad.Expr
Conditionally return an indication of the unique instance represented by this expression.
mark(boolean) - Method in class condor.classad.Expr
Conditionally return an indication of the unique instance represented by this expression.
mark(Expr) - Static method in class condor.classad.Expr
Return an indication of the unique instance of the argument.
MAXPREC - Static variable in class condor.classad.Expr
The maximum precedence in the grammar for ClassAd expressions.
milliseconds() - Method in class condor.classad.Constant
Convert a time value to milliseconds.
MINIMAL_PARENTHESES - Static variable in class condor.classad.Expr
An option flag for toString().
MINUS - Static variable in class condor.classad.Expr
Token ID corresponding to the operator -
MOD - Static variable in class condor.classad.Expr
Token ID corresponding to the operator %
MULTI_LINE_ADS - Static variable in class condor.classad.Expr
An option flag for toString().
MULTI_LINE_LISTS - Static variable in class condor.classad.Expr
An option flag for toString().

N

name - Variable in class condor.classad.GetOpt.LongOption
The option name (for example, "color")
nextOpt() - Method in class condor.classad.GetOpt
Return the next option.
nextToken() - Method in class condor.classad.ClassAdParser
Get the "lookahead" token: the first token not yet consumed by the parser.
nextValue() - Method in class condor.classad.ClassAdParser
The the "value" of the lookahead token.
NO_ARG - Static variable in class condor.classad.GetOpt
A value for LongOption.has Arg meaning "option has no argument"
NO_ESCAPE_STRINGS - Static variable in class condor.classad.Expr
An option flag for toString().
NOT - Static variable in class condor.classad.Expr
Token ID corresponding to the operator unary !
NOT_EQUAL - Static variable in class condor.classad.Expr
Token ID corresponding to the operator !=

O

oneWayMatch(Expr, Expr) - Static method in class condor.classad.ClassAd
Match two ClassAds.
op - Variable in class condor.classad.Op
The top-level operator.
Op - class condor.classad.Op.
A unary or binary expression.
OP - Static variable in class condor.classad.Expr
A type flag indicating that this is a unary or binary operator
Op(int, Expr) - Constructor for class condor.classad.Op
Construct a node for a unary operator.
Op(int, Expr, Expr) - Constructor for class condor.classad.Op
Construct a node for a binary operator.
opName - Static variable in class condor.classad.Expr
A table mapping operator codes to character-string names.
OPT_ARG - Static variable in class condor.classad.GetOpt
A value for LongOption.has Arg meaning "option has an optional argument"
optarg - Variable in class condor.classad.GetOpt
For communication from nextOpt() to the caller.
opterr - Variable in class condor.classad.GetOpt
If set to false, do not print messages to System.err for unrecognized options.
optind - Variable in class condor.classad.GetOpt
Index in argv of the next element to be scanned.
optopt - Variable in class condor.classad.GetOpt
Set to an option character which was unrecognized.
OR - Static variable in class condor.classad.Expr
Token ID corresponding to the operator ||

P

parse() - Method in class condor.classad.ClassAdParser
Parse a classsad Expr from the current input stream.
parse(InputStream) - Static method in class condor.classad.Query
Create a Query by parsing an input stream.
parse(Reader) - Static method in class condor.classad.Query
Create a Query my parsing an input stream.
parse(String) - Static method in class condor.classad.Query
Create a Query my parsing an input stream.
parseQuery() - Method in class condor.classad.ClassAdParser
Parse a Query from the current input stream.
PLUS - Static variable in class condor.classad.Expr
Token ID corresponding to the operator +
prec() - Method in class condor.classad.Expr
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.CondExpr
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.AttrRef
The precedence of this expression
prec() - Method in class condor.classad.ListExpr
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.FuncCall
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.SelectExpr
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.SubscriptExpr
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.RecordExpr
The precedence of the operator in this expression node.
prec() - Method in class condor.classad.Constant
The precedence of this expression node (MAXPREC).
prec() - Method in class condor.classad.Op
The precedence of the operator in this expression node.

Q

Query - class condor.classad.Query.
A parsed "query" in a very simple ad hoc query language inspired by SQL.
Query(RecordExpr, String, RecordExpr) - Constructor for class condor.classad.Query
Construct a query from its components.

R

read() - Method in class condor.classad.ClassAdReader
Returns one character from the translated input stream.
read(char[], int, int) - Method in class condor.classad.ClassAdReader
 
READABLE - Static variable in class condor.classad.Expr
A combination of option flags for toString().
REAL - Static variable in class condor.classad.Expr
A type flag indicating that this is a real value
realValue() - Method in class condor.classad.Constant
Get the double floating point value of this Constant if possible.
RECORD - Static variable in class condor.classad.Expr
A type flag indicating that this is a record (classad)
RecordExpr - class condor.classad.RecordExpr.
A "record" expression (also known as a "classad").
RecordExpr() - Constructor for class condor.classad.RecordExpr
Default constructor: a record with no fields
reEval(Context) - Method in class condor.classad.Expr
Evalutate this expression.
reEval(Context) - Method in class condor.classad.CondExpr
Evalutate this expression.
reEval(Context) - Method in class condor.classad.AttrRef
Evalutate this expression.
reEval(Context) - Method in class condor.classad.FuncCall
Evalutate a FuncCall expression.
reEval(Context) - Method in class condor.classad.SelectExpr
Evalutate this expression.
reEval(Context) - Method in class condor.classad.SubscriptExpr
Evalutate this expression.
reEval(Context) - Method in class condor.classad.Op
Evalutate this expression.
RELATIVE_TIME - Static variable in class condor.classad.Expr
A type flag indicating that this is a relative time value
REQ_ARG - Static variable in class condor.classad.GetOpt
A value for LongOption.has Arg meaning "option has a required argument"
RIGHT_SHIFT - Static variable in class condor.classad.Expr
Token ID corresponding to the operator >>
root - Variable in class condor.classad.Context
The outermost classad of the expression being evaluated.

S

SAME - Static variable in class condor.classad.Expr
Token ID corresponding to the operator is
search(CiString, Context) - Method in class condor.classad.RecordExpr
Find an attribute with the given name in this RecordExpr or a ``containing'' one.
search(String, Context) - Method in class condor.classad.RecordExpr
Find an attribute with the given name in this RecordExpr or a ``containing'' one.
select(Expr, String[]) - Static method in class condor.classad.SelectExpr
A convenience function for creating a SelectExpression corresponding to "base.a.b.c"
select(String) - Method in class condor.classad.Expr
A convenience function for creating a SelectExpression corresponding to ``this.selector''
selectClause - Variable in class condor.classad.Query
The "select" clause, encoded as a RecordExpr.
SelectExpr - class condor.classad.SelectExpr.
An internal (non-leaf) node of an expression tree, representing a selection of component of a record.
SelectExpr(Expr, CiString) - Constructor for class condor.classad.SelectExpr
Create a new SelectExpr corresponding to base.selector.
SelectExpr(Expr, String) - Constructor for class condor.classad.SelectExpr
Create a new SelectExpr corresponding to base.selector.
SELECTION - Static variable in class condor.classad.Expr
A type flag indicating that this is a selection (a.b)
setFormatFlags(int) - Static method in class condor.classad.Expr
Set options for converting expressions to strings.
setParent(RecordExpr, RecordExpr) - Method in class condor.classad.Context
Record the parent RecordExpr of a given node
setValue(Expr, Expr) - Method in class condor.classad.Context
Record the computed value of a given node.
SHOW_ERROR_DETAIL - Static variable in class condor.classad.Expr
An option flag for toString().
SHOW_INSTANCES - Static variable in class condor.classad.Expr
An option flag for toString().
size() - Method in class condor.classad.ListExpr
Get the length of this list.
size() - Method in class condor.classad.RecordExpr
Count how many attributes.
STRING - Static variable in class condor.classad.Expr
A type flag indicating that this is a string value
stringValue() - Method in class condor.classad.Constant
Get the string value of this Constant if possible.
sub(int) - Method in class condor.classad.ListExpr
Get a member of this list.
SUBSCRIPT - Static variable in class condor.classad.Expr
A type flag indicating that this is a selection (a.b)
SubscriptExpr - class condor.classad.SubscriptExpr.
A selection from a list.
SubscriptExpr(Expr, Expr) - Constructor for class condor.classad.SubscriptExpr
Create a new SubscriptExpr.

T

TIMES - Static variable in class condor.classad.Expr
Token ID corresponding to the operator *
toBoolean() - Method in class condor.classad.Constant
Convernience function: Convert to a boolean.
toString() - Method in class condor.classad.Expr
Convert this Expr to a string.
toString() - Method in class condor.classad.CondExpr
Convert this Expr to a string.
toString() - Method in class condor.classad.AttrRef
Convert this Expr to a string.
toString() - Method in class condor.classad.ListExpr
Convert this Expr to a string.
toString() - Method in class condor.classad.Context
Convert this Context to a string, for debugging purposes.
toString() - Method in class condor.classad.FuncCall
Convert this Expr to a string.
toString() - Method in class condor.classad.SelectExpr
Convert this Expr to a string.
toString() - Method in class condor.classad.SubscriptExpr
Convert this Expr to a string.
toString() - Method in class condor.classad.GetOpt.LongOption
Convert this option into a printable string.
toString() - Method in class condor.classad.Query
 
toString() - Method in class condor.classad.RecordExpr
Convert this Expr to a string.
toString() - Method in class condor.classad.Constant
Convert to a string
toString() - Method in class condor.classad.Op
Convert this Expr to a string.
toString(int) - Method in class condor.classad.Expr
Convert this Expr to a string.
transmit(DataOutput) - Method in class condor.classad.RecordExpr
Serialize this RecordExpr in the format currently expected by Condor.
True - Static variable in class condor.classad.Constant
The unique boolean constant true
twoWayMatch(Expr, Expr) - Static method in class condor.classad.ClassAd
Match two ClassAds.
type - Variable in class condor.classad.Expr
The "type" of this expression.
typeName() - Method in class condor.classad.Expr
Determine the type of this expression (for printing messages).
typeName() - Method in class condor.classad.ListExpr
The type of the expression.
typeName() - Method in class condor.classad.SelectExpr
The type of the expression.
typeName() - Method in class condor.classad.SubscriptExpr
The type of the expression.
typeName() - Method in class condor.classad.RecordExpr
The type of the expression.

U

UMINUS - Static variable in class condor.classad.Expr
Token ID corresponding to the operator unary -
Undef - Static variable in class condor.classad.Constant
A default undefined constant
UNDEFINED - Static variable in class condor.classad.Expr
A type flag indicating that this is an undefined value
UPLUS - Static variable in class condor.classad.Expr
Token ID corresponding to the operator unary +
URIGHT_SHIFT - Static variable in class condor.classad.Expr
Token ID corresponding to the operator >>>

V

val - Variable in class condor.classad.GetOpt.LongOption
The equivalent short (one-char) option name (for example 'c')

W

whereClause - Variable in class condor.classad.Query
The "where" clause (as an expression of the form [Requirements = ...]), or null if the "where" clause was omitted.

A B C D E F G H I L M N O P Q R S T U V W