Uses of Class
org.globus.rsl.Value

Packages that use Value
org.globus.rsl This library provides a convenience API for creating, manipulating, and checking the validity of RSL expressions. 
 

Uses of Value in org.globus.rsl
 

Subclasses of Value in org.globus.rsl
 class VarRef
          This class represents a variable reference in the RSL string.
 

Fields in org.globus.rsl declared as Value
protected  Value Binding._value
           
protected  Value VarRef.defValue
           
protected  Value Value.concatValue
           
 

Methods in org.globus.rsl that return Value
 Value Binding.getValue()
          Returns the variable value.
 Value RSLParser.SimpleValue(LinkedList valueList, LinkedList tokenList)
           
 Value RSLParser.variableReference(LinkedList valueList, LinkedList tokenList)
           
 Value RSLParser.explicitConcat(LinkedList valueList, LinkedList tokenList)
           
 Value RSLParser.concatSimpleValue()
           
 Value Value.getConcat()
          Returns the value that is concatinated with this value.
 

Methods in org.globus.rsl with parameters of type Value
 void NameOpValue.add(Value value)
          Adds a value to the list of values.
 void VarRef.setDefaultValue(Value value)
          Sets the default value of this reference.
 void Value.concat(Value value)
          Appends the specified value to the end of the chain of concatinated values.
 

Constructors in org.globus.rsl with parameters of type Value
NameOpValue(String attribute, int op, Value value)
           
Binding(String name, Value value)
           
VarRef(String varReference, Value defValue)
           
VarRef(String varReference, Value defValue, Value concatVal)
           
Value(String value, Value concatValue)