Package org.zkoss.zkmax.bind
Class GsonConverter
- java.lang.Object
-
- org.zkoss.zkmax.bind.GsonConverter
-
- Direct Known Subclasses:
GsonConverter
public class GsonConverter extends java.lang.Object implements Converter<java.lang.Object,java.lang.Object,Component>
A Gson converter for Binding Parameter- Since:
- 8.0.0
- Author:
- jumperchen
-
-
Field Summary
-
Fields inherited from interface org.zkoss.bind.Converter
IGNORED_VALUE
-
-
Constructor Summary
Constructors Constructor Description GsonConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
coerceToBean(java.lang.Object compAttr, Component component, BindContext ctx)
Coerces a value to bean value to save to a beanjava.lang.Object
coerceToUi(java.lang.Object beanProp, Component component, BindContext ctx)
Coerces a value to another value to load to a component
-
-
-
Method Detail
-
coerceToUi
public java.lang.Object coerceToUi(java.lang.Object beanProp, Component component, BindContext ctx)
Description copied from interface:Converter
Coerces a value to another value to load to a component- Specified by:
coerceToUi
in interfaceConverter<java.lang.Object,java.lang.Object,Component>
- Parameters:
beanProp
- the bean valuecomponent
- the component to be loaded the valuectx
- the bind context- Returns:
- the value to load to a component
-
coerceToBean
public java.lang.Object coerceToBean(java.lang.Object compAttr, Component component, BindContext ctx)
Description copied from interface:Converter
Coerces a value to bean value to save to a bean- Specified by:
coerceToBean
in interfaceConverter<java.lang.Object,java.lang.Object,Component>
- Parameters:
compAttr
- the value of component attribute.component
- the component provides the valuectx
- the bind context- Returns:
- the value to save to a bean
-
-