Uses of Interface
com.google.clearsilver.jsilver.functions.Function

Packages that use Function
com.google.clearsilver.jsilver   
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   
 

Uses of Function in com.google.clearsilver.jsilver
 

Methods in com.google.clearsilver.jsilver with parameters of type Function
 void JSilver.registerGlobalFunction(String name, Function function)
          Registers a global Function that can be used from any template.
 

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

Classes in com.google.clearsilver.jsilver.functions that implement Function
 class EscapingFunction
           
 class NonEscapingFunction
           
 

Fields in com.google.clearsilver.jsilver.functions with type parameters of type Function
protected  Map<String,Function> FunctionRegistry.functions
           
 

Methods in com.google.clearsilver.jsilver.functions with parameters of type Function
 void FunctionRegistry.registerFunction(String name, Function function)
          Register a Function with a given name.
 

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

Classes in com.google.clearsilver.jsilver.functions.numeric that implement Function
 class AbsFunction
          Returns the absolute value of the numeric expressions.
 class MaxFunction
          Returns the larger of two numeric expressions.
 class MinFunction
          Returns the smaller of two numeric expressions.
 

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

Classes in com.google.clearsilver.jsilver.functions.operators that implement Function
 class AddFunction
          X + Y (string).
 class AndFunction
          X && Y.
 class DivideFunction
          X / Y.
 class EqualFunction
          X == Y (string).
 class ExistsFunction
          ?X.
 class GreaterFunction
          X > Y.
 class GreaterOrEqualFunction
          X >= Y.
 class LessFunction
          X < Y.
 class LessOrEqualFunction
          X <= Y.
 class ModuloFunction
          X % Y.
 class MultiplyFunction
          X * Y.
 class NotEqualFunction
          X != Y (string).
 class NotFunction
          !X.
 class NumericAddFunction
          X + Y (numeric).
 class NumericEqualFunction
          X == Y (numeric).
 class NumericFunction
          #X (numeric).
 class NumericNotEqualFunction
          X != Y (numeric).
 class OrFunction
          X || Y.
 class SubtractFunction
          X - Y.
 

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

Classes in com.google.clearsilver.jsilver.functions.string that implement Function
 class CrcFunction
          Returns the CRC-32 of a string.
 class FindFunction
          Returns the numeric position of the substring in the string (if found), otherwise returns -1 similar to the Python string.find method.
 class LengthFunction
          Returns the length of the string expression.
 class SliceFunction
          Returns the string slice starting at start and ending at end, similar to the Python slice operator.
 

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

Classes in com.google.clearsilver.jsilver.functions.structure that implement Function
 class FirstFunction
          Returns true if the local variable is the first in a loop or each.
 class LastFunction
          Returns true if the local variable is the last in a loop or each.
 class NameFunction
          Returns the Data variable name for a local variable alias.
 class SubcountFunction
          Returns the number of child nodes for the HDF variable.
 



Copyright © 2010-2012 Google. All Rights Reserved.