Uses of Class
org.weborganic.uri.template.Variable

Uses of Variable in org.weborganic.uri.template
 

Methods in org.weborganic.uri.template that return Variable
 Variable TokenVariable.getVariable()
          Returns the variable wrapped by this token.
static Variable Variable.parse(String exp)
          Parses the given expression and returns the corresponding instance.
 

Methods in org.weborganic.uri.template that return types with arguments of type Variable
 List<Variable> TokenOperatorRF.variables()
          Returns the list of variables used in this token.
 List<Variable> TokenOperatorD3.variables()
          Returns the list of variables used in this token.
 List<Variable> TokenOperator.variables()
          Returns the list of variables used in this token.
 

Method parameters in org.weborganic.uri.template with type arguments of type Variable
 boolean TokenVariable.resolve(String expanded, Map<Variable,Object> values)
          Resolves the specified expanded URI part for this token.
 boolean TokenOperatorRF.resolve(String expanded, Map<Variable,Object> values)
          Resolves the specified expanded URI part for this token.
 boolean TokenOperatorD3.resolve(String expanded, Map<Variable,Object> values)
          Resolves the specified expanded URI part for this token.
 boolean TokenLiteral.resolve(String expanded, Map<Variable,Object> values)
          Resolves the specified expanded URI part for this token.
 boolean Token.resolve(String expanded, Map<Variable,Object> values)
          Resolves the specified expanded URI part for this token.
 

Constructors in org.weborganic.uri.template with parameters of type Variable
TokenOperatorRF(TokenOperatorRF.Operator op, Variable var)
          Creates a new operator token for one variable only.
TokenVariable(Variable var)
          Creates a new variable token.
 

Constructor parameters in org.weborganic.uri.template with type arguments of type Variable
TokenOperatorD3(TokenOperatorD3.Operator op, String arg, List<Variable> vars)
          Creates a new operator token.
TokenOperatorRF(TokenOperatorRF.Operator op, List<Variable> vars)
          Creates a new operator token.