Uses of Class
com.google.clearsilver.jsilver.values.Value

Packages that use Value
com.google.clearsilver.jsilver.compiler   
com.google.clearsilver.jsilver.functions   
com.google.clearsilver.jsilver.functions.numeric   
com.google.clearsilver.jsilver.functions.operators   
com.google.clearsilver.jsilver.functions.string   
com.google.clearsilver.jsilver.functions.structure   
com.google.clearsilver.jsilver.interpreter   
com.google.clearsilver.jsilver.template   
com.google.clearsilver.jsilver.values   
 

Uses of Value in com.google.clearsilver.jsilver.compiler
 

Methods in com.google.clearsilver.jsilver.compiler that return Value
static Value BaseCompiledTemplate.asValue(boolean value)
           
static Value BaseCompiledTemplate.asValue(int value)
           
static Value BaseCompiledTemplate.asValue(String value)
           
static Value BaseCompiledTemplate.asValue(Value value)
           
static Value BaseCompiledTemplate.asVariableValue(String variableName, DataContext context)
           
 

Methods in com.google.clearsilver.jsilver.compiler with parameters of type Value
static boolean BaseCompiledTemplate.asBoolean(Value value)
           
static int BaseCompiledTemplate.asInt(Value value)
           
static String BaseCompiledTemplate.asString(Value value)
           
static Value BaseCompiledTemplate.asValue(Value value)
           
 

Uses of Value in com.google.clearsilver.jsilver.functions
 

Methods in com.google.clearsilver.jsilver.functions that return Value
 Value Function.execute(Value... args)
          Execute a function.
 Value FunctionRegistry.executeFunction(String name, Value... args)
           
 Value FunctionExecutor.executeFunction(String functionName, Value... args)
          Lookup a function by name, execute it and return the results.
 

Methods in com.google.clearsilver.jsilver.functions with parameters of type Value
 Value Function.execute(Value... args)
          Execute a function.
 Value FunctionRegistry.executeFunction(String name, Value... args)
           
 Value FunctionExecutor.executeFunction(String functionName, Value... args)
          Lookup a function by name, execute it and return the results.
 

Uses of Value in com.google.clearsilver.jsilver.functions.numeric
 

Methods in com.google.clearsilver.jsilver.functions.numeric that return Value
 Value MinFunction.execute(Value... args)
           
 Value AbsFunction.execute(Value... args)
           
 Value MaxFunction.execute(Value... args)
           
 

Methods in com.google.clearsilver.jsilver.functions.numeric with parameters of type Value
 Value MinFunction.execute(Value... args)
           
 Value AbsFunction.execute(Value... args)
           
 Value MaxFunction.execute(Value... args)
           
 

Uses of Value in com.google.clearsilver.jsilver.functions.operators
 

Methods in com.google.clearsilver.jsilver.functions.operators that return Value
 Value NumericEqualFunction.execute(Value... args)
           
 Value LessOrEqualFunction.execute(Value... args)
           
 Value NotEqualFunction.execute(Value... args)
           
 Value NumericAddFunction.execute(Value... args)
           
 Value NotFunction.execute(Value... args)
           
 Value ModuloFunction.execute(Value... args)
           
 Value OrFunction.execute(Value... args)
           
 Value GreaterFunction.execute(Value... args)
           
 Value DivideFunction.execute(Value... args)
           
 Value SubtractFunction.execute(Value... args)
           
 Value GreaterOrEqualFunction.execute(Value... args)
           
 Value MultiplyFunction.execute(Value... args)
           
 Value ExistsFunction.execute(Value... args)
           
 Value NumericNotEqualFunction.execute(Value... args)
           
 Value AndFunction.execute(Value... args)
           
 Value EqualFunction.execute(Value... args)
           
 Value NumericFunction.execute(Value... args)
           
 Value AddFunction.execute(Value... args)
           
 Value LessFunction.execute(Value... args)
           
 

Methods in com.google.clearsilver.jsilver.functions.operators with parameters of type Value
 Value NumericEqualFunction.execute(Value... args)
           
 Value LessOrEqualFunction.execute(Value... args)
           
 Value NotEqualFunction.execute(Value... args)
           
 Value NumericAddFunction.execute(Value... args)
           
 Value NotFunction.execute(Value... args)
           
 Value ModuloFunction.execute(Value... args)
           
 Value OrFunction.execute(Value... args)
           
 Value GreaterFunction.execute(Value... args)
           
 Value DivideFunction.execute(Value... args)
           
 Value SubtractFunction.execute(Value... args)
           
 Value GreaterOrEqualFunction.execute(Value... args)
           
 Value MultiplyFunction.execute(Value... args)
           
 Value ExistsFunction.execute(Value... args)
           
 Value NumericNotEqualFunction.execute(Value... args)
           
 Value AndFunction.execute(Value... args)
           
 Value EqualFunction.execute(Value... args)
           
 Value NumericFunction.execute(Value... args)
           
 Value AddFunction.execute(Value... args)
           
 Value LessFunction.execute(Value... args)
           
 

Uses of Value in com.google.clearsilver.jsilver.functions.string
 

Methods in com.google.clearsilver.jsilver.functions.string that return Value
 Value SliceFunction.execute(Value... args)
           
 Value LengthFunction.execute(Value... args)
           
 Value FindFunction.execute(Value... args)
           
 Value CrcFunction.execute(Value... args)
           
 

Methods in com.google.clearsilver.jsilver.functions.string with parameters of type Value
 Value SliceFunction.execute(Value... args)
           
 Value LengthFunction.execute(Value... args)
           
 Value FindFunction.execute(Value... args)
           
 Value CrcFunction.execute(Value... args)
           
 

Uses of Value in com.google.clearsilver.jsilver.functions.structure
 

Methods in com.google.clearsilver.jsilver.functions.structure that return Value
 Value LastFunction.execute(Value... args)
           
 Value SubcountFunction.execute(Value... args)
           
 Value NameFunction.execute(Value... args)
           
 Value FirstFunction.execute(Value... args)
           
 

Methods in com.google.clearsilver.jsilver.functions.structure with parameters of type Value
 Value LastFunction.execute(Value... args)
           
 Value SubcountFunction.execute(Value... args)
           
 Value NameFunction.execute(Value... args)
           
 Value FirstFunction.execute(Value... args)
           
 

Uses of Value in com.google.clearsilver.jsilver.interpreter
 

Methods in com.google.clearsilver.jsilver.interpreter that return Value
 Value ExpressionEvaluator.evaluate(PExpression expression)
          Evaluate an expression into a single value.
 

Uses of Value in com.google.clearsilver.jsilver.template
 

Methods in com.google.clearsilver.jsilver.template that return Value
 Value DefaultRenderingContext.executeFunction(String name, Value... args)
          Lookup a function by name, execute it and return the results.
 Value RenderingContext.executeFunction(String name, Value... args)
          Execute a named function.
 

Methods in com.google.clearsilver.jsilver.template with parameters of type Value
 Value DefaultRenderingContext.executeFunction(String name, Value... args)
          Lookup a function by name, execute it and return the results.
 Value RenderingContext.executeFunction(String name, Value... args)
          Execute a named function.
 

Uses of Value in com.google.clearsilver.jsilver.values
 

Subclasses of Value in com.google.clearsilver.jsilver.values
 class VariableValue
          A value linked to a variable reference.
 

Methods in com.google.clearsilver.jsilver.values that return Value
static Value Value.literalConstant(boolean value, Value... inputs)
          Create a literal value using a boolean with a escapeMode of EscapeMode.ESCAPE_IS_CONSTANT and partiallyEscaped based on the partiallyEscaped values of the inputs.
static Value Value.literalConstant(int value, Value... inputs)
          Create a literal value using an int with a escapeMode of EscapeMode.ESCAPE_IS_CONSTANT and partiallyEscaped based on the partiallyEscaped values of the inputs.
static Value Value.literalConstant(String value, Value... inputs)
          Create a literal value using a string with a escapeMode of EscapeMode.ESCAPE_IS_CONSTANT and partiallyEscaped based on the partiallyEscaped values of the inputs.
static Value Value.literalValue(boolean value, EscapeMode mode, boolean partiallyEscaped)
          Create a literal value using a boolean.
static Value Value.literalValue(int value, EscapeMode mode, boolean partiallyEscaped)
          Create a literal value using an int.
static Value Value.literalValue(String value, EscapeMode mode, boolean partiallyEscaped)
          Create a literal value using a String.
static Value Value.variableValue(String name, DataContext dataContext)
          Create a value linked to a variable name.
 

Methods in com.google.clearsilver.jsilver.values with parameters of type Value
static Value Value.literalConstant(boolean value, Value... inputs)
          Create a literal value using a boolean with a escapeMode of EscapeMode.ESCAPE_IS_CONSTANT and partiallyEscaped based on the partiallyEscaped values of the inputs.
static Value Value.literalConstant(int value, Value... inputs)
          Create a literal value using an int with a escapeMode of EscapeMode.ESCAPE_IS_CONSTANT and partiallyEscaped based on the partiallyEscaped values of the inputs.
static Value Value.literalConstant(String value, Value... inputs)
          Create a literal value using a string with a escapeMode of EscapeMode.ESCAPE_IS_CONSTANT and partiallyEscaped based on the partiallyEscaped values of the inputs.
 



Copyright © 2010-2012 Google. All Rights Reserved.