Package org.zkoss.bind.converter
Class ObjectBooleanConverter
- java.lang.Object
-
- org.zkoss.bind.converter.ObjectBooleanConverter
-
- All Implemented Interfaces:
java.io.Serializable
,Converter
public class ObjectBooleanConverter extends java.lang.Object implements Converter, java.io.Serializable
Converter to convert boolean to Object.- Since:
- 6.0.0
- Author:
- henrichen
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.zkoss.bind.Converter
IGNORED_VALUE
-
-
Constructor Summary
Constructors Constructor Description ObjectBooleanConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
coerceToBean(java.lang.Object val, Component comp, BindContext ctx)
Given an object value and return whether it is a "true" object.java.lang.Object
coerceToUi(java.lang.Object val, Component comp, BindContext ctx)
Given a Boolean value and return associated "true" object if true; or "false" object if null or false
-
-
-
Method Detail
-
coerceToBean
public java.lang.Object coerceToBean(java.lang.Object val, Component comp, BindContext ctx)
Given an object value and return whether it is a "true" object.- Specified by:
coerceToBean
in interfaceConverter
- Parameters:
val
- the object to be checked if a true objectcomp
- associated Componentctx
- bind context for associateBinding
and extra parameter (e.g. true and false)- Returns:
- the converted Boolean object
-
coerceToUi
public java.lang.Object coerceToUi(java.lang.Object val, Component comp, BindContext ctx)
Given a Boolean value and return associated "true" object if true; or "false" object if null or false- Specified by:
coerceToUi
in interfaceConverter
- Parameters:
val
- the boolean value to be checked.comp
- associate Componentctx
- bind context for associateBinding
and extra parameter (e.g. true and false)- Returns:
- the converted "true" object if true; or "false" object if null or false.
-
-