Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
static boolean |
BaseCompiledTemplate.asBoolean(Value value) |
static int |
BaseCompiledTemplate.asInt(Value value) |
static String |
BaseCompiledTemplate.asString(Value value) |
static Value |
BaseCompiledTemplate.asValue(Value value) |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
Value |
MinFunction.execute(Value... args) |
Value |
MaxFunction.execute(Value... args) |
Value |
AbsFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
MinFunction.execute(Value... args) |
Value |
MaxFunction.execute(Value... args) |
Value |
AbsFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
LessFunction.execute(Value... args) |
Value |
AndFunction.execute(Value... args) |
Value |
NumericAddFunction.execute(Value... args) |
Value |
DivideFunction.execute(Value... args) |
Value |
ModuloFunction.execute(Value... args) |
Value |
GreaterFunction.execute(Value... args) |
Value |
EqualFunction.execute(Value... args) |
Value |
NumericFunction.execute(Value... args) |
Value |
NotFunction.execute(Value... args) |
Value |
NotEqualFunction.execute(Value... args) |
Value |
LessOrEqualFunction.execute(Value... args) |
Value |
MultiplyFunction.execute(Value... args) |
Value |
ExistsFunction.execute(Value... args) |
Value |
OrFunction.execute(Value... args) |
Value |
AddFunction.execute(Value... args) |
Value |
SubtractFunction.execute(Value... args) |
Value |
NumericEqualFunction.execute(Value... args) |
Value |
NumericNotEqualFunction.execute(Value... args) |
Value |
GreaterOrEqualFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
LessFunction.execute(Value... args) |
Value |
AndFunction.execute(Value... args) |
Value |
NumericAddFunction.execute(Value... args) |
Value |
DivideFunction.execute(Value... args) |
Value |
ModuloFunction.execute(Value... args) |
Value |
GreaterFunction.execute(Value... args) |
Value |
EqualFunction.execute(Value... args) |
Value |
NumericFunction.execute(Value... args) |
Value |
NotFunction.execute(Value... args) |
Value |
NotEqualFunction.execute(Value... args) |
Value |
LessOrEqualFunction.execute(Value... args) |
Value |
MultiplyFunction.execute(Value... args) |
Value |
ExistsFunction.execute(Value... args) |
Value |
OrFunction.execute(Value... args) |
Value |
AddFunction.execute(Value... args) |
Value |
SubtractFunction.execute(Value... args) |
Value |
NumericEqualFunction.execute(Value... args) |
Value |
NumericNotEqualFunction.execute(Value... args) |
Value |
GreaterOrEqualFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
CrcFunction.execute(Value... args) |
Value |
FindFunction.execute(Value... args) |
Value |
SliceFunction.execute(Value... args) |
Value |
LengthFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
CrcFunction.execute(Value... args) |
Value |
FindFunction.execute(Value... args) |
Value |
SliceFunction.execute(Value... args) |
Value |
LengthFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
NameFunction.execute(Value... args) |
Value |
FirstFunction.execute(Value... args) |
Value |
SubcountFunction.execute(Value... args) |
Value |
LastFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
NameFunction.execute(Value... args) |
Value |
FirstFunction.execute(Value... args) |
Value |
SubcountFunction.execute(Value... args) |
Value |
LastFunction.execute(Value... args) |
Modifier and Type | Method and Description |
---|---|
Value |
ExpressionEvaluator.evaluate(PExpression expression)
Evaluate an expression into a single value.
|
Modifier and Type | Method and Description |
---|---|
Value |
RenderingContext.executeFunction(String name,
Value... args)
Execute a named function.
|
Value |
DefaultRenderingContext.executeFunction(String name,
Value... args)
Lookup a function by name, execute it and return the results.
|
Modifier and Type | Method and Description |
---|---|
Value |
RenderingContext.executeFunction(String name,
Value... args)
Execute a named function.
|
Value |
DefaultRenderingContext.executeFunction(String name,
Value... args)
Lookup a function by name, execute it and return the results.
|
Modifier and Type | Class and Description |
---|---|
class |
VariableValue
A value linked to a variable reference.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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–2013 Google. All rights reserved.