Class NumericTranslator<T extends Number>
- java.lang.Object
- 
- org.apache.tapestry5.internal.translator.AbstractTranslator<T>
- 
- org.apache.tapestry5.internal.translator.NumericTranslator<T>
 
 
- 
- All Implemented Interfaces:
- Translator<T>
 
 public class NumericTranslator<T extends Number> extends AbstractTranslator<T> Uses aNumericTranslatorSupportto provide proper locale-aware support for all the built-in numeric types.- Since:
- 5.1.0.1
 
- 
- 
Constructor SummaryConstructors Constructor Description NumericTranslator(String name, Class<T> type, NumericTranslatorSupport support, Html5Support html5Support)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TparseClient(Field field, String clientValue, String message)Converts a submitted request value into an appropriate server side value.voidrender(Field field, String message, MarkupWriter writer, FormSupport formSupport)Hook used by components to allow the validator to contribute additional attributes or (more often) client-side JavaScript (via theFormSupport.addValidation(Field, String, String, Object)).StringtoClient(T value)Converts a server-side value to a client-side string.- 
Methods inherited from class org.apache.tapestry5.internal.translator.AbstractTranslatorgetMessageKey, getName, getType
 
- 
 
- 
- 
- 
Constructor Detail- 
NumericTranslatorpublic NumericTranslator(String name, Class<T> type, NumericTranslatorSupport support, Html5Support html5Support) 
 
- 
 - 
Method Detail- 
renderpublic void render(Field field, String message, MarkupWriter writer, FormSupport formSupport) Description copied from interface:TranslatorHook used by components to allow the validator to contribute additional attributes or (more often) client-side JavaScript (via theFormSupport.addValidation(Field, String, String, Object)).- Parameters:
- field- the field which is currently being rendered
- message- formatted validation message, either from validation messages, or from an override
- writer- markup writer, allowing additional attributes to be written into the active element
- formSupport- used to add JavaScript
 
 - 
parseClientpublic T parseClient(Field field, String clientValue, String message) throws ValidationException Description copied from interface:TranslatorConverts a submitted request value into an appropriate server side value.- Parameters:
- field- for which a value is being parsed
- clientValue- to convert to a server value; this will not be null, but may be blank
- message- formatted validation message, either from validation messages, or from an override
- Returns:
- equivalent server-side value (possibly null)
- Throws:
- ValidationException- if the value can not be parsed
 
 - 
toClientpublic String toClient(T value) Description copied from interface:TranslatorConverts a server-side value to a client-side string. This allows for formatting of the value in a way appropriate to the end user. The output client value should be parsable byTranslator.parseClient(Field, String, String).- Parameters:
- value- the server side value (which will not be null)
- Returns:
- client-side value to present to the user
 
 
- 
 
-