Uses of Class
condor.classad.RecordExpr

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

Uses of RecordExpr in condor.classad
 

Methods in condor.classad that return RecordExpr
static RecordExpr ClassAd.bind(RecordExpr ad1, RecordExpr ad2)
          Wrap a pair of ads in an environment defining "self" and "other".
 RecordExpr RecordExpr.insertAttribute(String name, Expr expr)
          Add an attribute (replacing previous value if any).
 RecordExpr RecordExpr.insertAttribute(AttrName key, Expr expr)
          Add an attribute (replacing previous value if any).
 RecordExpr Env.pop(int n)
          Pops "n" records off the stack.
 

Methods in condor.classad with parameters of type RecordExpr
static RecordExpr ClassAd.bind(RecordExpr ad1, RecordExpr ad2)
          Wrap a pair of ads in an environment defining "self" and "other".
static Expr ClassAd.eval(RecordExpr ad, String[] attrs)
          Evaluate a selection from a ClassAd.
static Expr ClassAd.eval(RecordExpr ad, String attr)
          Evaluate a selection from a ClassAd.
static Expr ClassAd.eval(String name, Expr expr, RecordExpr ad)
          Evaluate an expression in the context of a ClassAd.
static Expr ClassAd.eval(String attr, RecordExpr ad1, RecordExpr ad2)
          Evaluate an attribute of a ClassAd in an environment consisting of a pair of ads.
 void Env.push(RecordExpr recEx)
          Push a new RecordExpr onto the stack.
 

Constructors in condor.classad with parameters of type RecordExpr
Env(RecordExpr recEx, Env next)
          Construct a new Env from its components.