Class DesignResourceConverter
- java.lang.Object
-
- com.vaadin.ui.declarative.converters.DesignResourceConverter
-
- All Implemented Interfaces:
Converter<String,Resource>
,Serializable
public class DesignResourceConverter extends Object implements Converter<String,Resource>
A converter forResource
implementations supported byDesignAttributeHandler
.- Since:
- 7.4
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DesignResourceConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Result<Resource>
convertToModel(String value, ValueContext context)
Converts the given value from model type to presentation type.String
convertToPresentation(Resource value, ValueContext context)
Converts the given value from presentation type to model type.
-
-
-
Method Detail
-
convertToModel
public Result<Resource> convertToModel(String value, ValueContext context)
Description copied from interface:Converter
Converts the given value from model type to presentation type.A converter can optionally use locale to do the conversion.
- Specified by:
convertToModel
in interfaceConverter<String,Resource>
- Parameters:
value
- The value to convert. Can be nullcontext
- The value context for the conversion.- Returns:
- The converted value compatible with the source type
-
convertToPresentation
public String convertToPresentation(Resource value, ValueContext context)
Description copied from interface:Converter
Converts the given value from presentation type to model type.A converter can optionally use locale to do the conversion.
- Specified by:
convertToPresentation
in interfaceConverter<String,Resource>
- Parameters:
value
- The value to convert. Can be nullcontext
- The value context for the conversion.- Returns:
- The converted value compatible with the source type
-
-