public static class UiBinding.MappingConverter
- Object
- UiBinding.ObjectConverter
- UiBinding.MappingConverter
Maps values to other values for conversion in a similar way to a Map this is pretty useful for
API’s like picker where we have a list of Strings and we might want a list of other objects to
match every string
Constructors
public MappingConverter(Map<Object, Object> m) |
Methods
public Object convert(Object source) | Converts an object of source type to the type matching this class, the default implementation does nothing and can be used as a stand-in |
Inherited methods
Constructor details
MappingConverter
public MappingConverter(Map<Object, Object> m)Method details
convert
public Object convert(Object source)Converts an object of source type to the type matching this class, the default implementation
does nothing and can be used as a stand-in
Parameters
sourceObject- an object or null
Returns
null or a new object instance