Uses of Class
condor.classad.AttrName

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

Uses of AttrName in condor.classad
 

Fields in condor.classad declared as AttrName
 AttrName FuncCall.func
          The name of the function as supplied in the original source.
 AttrName AttrRef.name
          The string name associated with this reference.
 AttrName SelectExpr.selector
          The right argument (identifier) of the selection operator.
(package private) static AttrName AttrName.PARENT
          The reseved word PARENT.
 

Methods in condor.classad that return AttrName
static AttrName AttrName.fromText(String v)
          Returns the instance corresponding to a given NATIVE representation.
static AttrName AttrName.fromString(String v)
          Returns the instance corresponding to a given raw String.
 

Methods in condor.classad with parameters of type AttrName
static Expr FuncCall.getInstance(AttrName func, List params)
          Create a function node from a name and a list of paramters.
 Expr RecordExpr.lookup(AttrName name, Env env)
          Find the attribute with the given name in this RecordExpr or one of its ancestors.
 Expr RecordExpr.lookup(AttrName name)
          Find the attribute with the given name.
 RecordExpr RecordExpr.insertAttribute(AttrName key, Expr expr)
          Add an attribute (replacing previous value if any).
 Expr RecordExpr.removeAttribute(AttrName attr)
          Delete an attribute.
 Expr Env.search(AttrName name)
          Search for a given attribute name in the RecordExprs on the stack, from innermost to outermost.
 

Constructors in condor.classad with parameters of type AttrName
AttrRef(AttrName name)
          Create a new AttrRef.
SelectExpr(Expr base, AttrName selector)
          Create a new SelectExpr corresponding to base.selector.