terp - the Codemesh Modular
Template Interpreter v1.3.309

com.codemesh.terp.eval.converters
Class ToFloat

java.lang.Object
  extended by com.codemesh.terp.eval.converters.ToFloat
All Implemented Interfaces:
Converter<java.lang.Float>

public class ToFloat
extends java.lang.Object
implements Converter<java.lang.Float>

Converts various types to Double values. This converter is registered under the ^float name.

Like all converters, this type supports conversion from its own target type (i.e. Float) and the String type. Any given string will be evaluated as an expression and the result of that evaluation will be evaluated as a Float value. This converter also supports conversions from numeric types. Any number will be converted to a Float. For any other type, null is returned.


Constructor Summary
ToFloat()
           
 
Method Summary
 java.lang.Float fromObject(java.lang.Object obj, TerpContext ctx)
          Converts the given object into an object of the target type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ToFloat

public ToFloat()
Method Detail

fromObject

public java.lang.Float fromObject(java.lang.Object obj,
                                  TerpContext ctx)
Converts the given object into an object of the target type. Conversions can be implemented in any way that makes sense. Normally, converters will return null for null, but some converters may choose to interpret null as an indicator to return a default-initialized target object. An example of this type of conversion is the ShellExecutor. null simply indicates that no preference overrides of any kind have been provided.

Specified by:
fromObject in interface Converter<java.lang.Float>
Parameters:
obj - the source object.
ctx - the context in which the conversion takes place.
Returns:
an instance of the target type or null.

terp - the Codemesh Modular
Template Interpreter v1.3.309

Copyright © 2008-2012 by Codemesh, Inc. All Rights Reserved.