Velocity MathTool Minimum : MathTool « Velocity « Java






Velocity MathTool Minimum


import java.io.StringWriter;
import java.io.Writer;

import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.tools.generic.MathTool;

public class MathToolExample {
  public static void main(String[] args) throws Exception {
    Velocity.init();

    Template t = Velocity.getTemplate("./src/mathTool.vm");

    VelocityContext ctx = new VelocityContext();
    ctx.put("math", new MathTool());
    ctx.put("aNumber", new Double(5.5));

    Writer writer = new StringWriter();
    t.merge(ctx, writer);

    System.out.println(writer);
  }
}
-------------------------------------------------------------------------------------
The minimum of $aNumber and 3.2 is $math.min($aNumber, "3.2")

           
       








velocity-MathTool-Minimum.zip( 875 k)

Related examples in the same category

1.Velocity MathTool: Add
2.Velocity MathTool Divide
3.Velocity MathTool: Maximun
4.Velocity MathTool: Multiply
5.Reference Class method in Mathtool
6.Velocity Math Tool: Power
7.Velocity Math Tool Random
8.Velocity MathTool Random Between
9.Math tool: round to a given integer
10.Velocity Math Tool Round To Integer
11.Velocity Math Tool: Subtract