Uses of Interface
messif.objects.util.impl.PatternToken

Packages that use PatternToken
messif.objects.util.impl Implementation of simple function evaluator. 
 

Uses of PatternToken in messif.objects.util.impl
 

Classes in messif.objects.util.impl that implement PatternToken
 class ArithmeticFunctionToken
          This is class for arithmethic functions, like "log", for aggregation function evaluator.
 class ArithmeticOperatorToken
          Arithmetic operators like "+, -, *, /" for aggregation function evaluator.
 class ConstantToken
          Simple float constant token for the aggragation function evaluator.
 class SubdistanceToken
          The subdistance identifier for the aggregation function evalutator.
 

Fields in messif.objects.util.impl declared as PatternToken
protected  PatternToken ArithmeticFunctionToken.operand
          Operand
protected  PatternToken ArithmeticOperatorToken.operand1
          First operand
protected  PatternToken ArithmeticOperatorToken.operand2
          Second operand
 

Constructors in messif.objects.util.impl with parameters of type PatternToken
ArithmeticFunctionToken(java.lang.String functionString, PatternToken operand)
          Currently, this class recognizes only the "log" function, which is "ln" in fact.
ArithmeticOperatorToken(PatternToken operand1, java.lang.String operator, PatternToken operand2)
          Constructs the object given two already created operands and operator string: "+", "-", "*", "/".