Uses of Interface
com.vaadin.v7.data.util.converter.Converter
-
Packages that use Converter Package Description com.vaadin.v7.data.util.converter com.vaadin.v7.ui -
-
Uses of Converter in com.vaadin.v7.data.util.converter
Classes in com.vaadin.v7.data.util.converter that implement Converter Modifier and Type Class Description classAbstractStringToNumberConverter<T>Deprecated.classDateToLongConverterDeprecated.classDateToSqlDateConverterDeprecated.classReverseConverter<PRESENTATION,MODEL>Deprecated.As of 8.0, no direct replacement available.classStringToBigDecimalConverterDeprecated.classStringToBigIntegerConverterDeprecated.classStringToBooleanConverterDeprecated.classStringToByteConverterDeprecated.As of 8.0, a lightweight lambda-based converter can be build withBinder.forField(...).withConverter(...)methods.classStringToCollectionConverterDeprecated.As of 8.0, a lightweight lambda-based converter can be build withBinder.forField(...).withConverter(...)methods.classStringToDateConverterDeprecated.classStringToDoubleConverterDeprecated.classStringToEnumConverterDeprecated.As of 8.0, a lightweight lambda-based converter can be build withBinder.forField(...).withConverter(...)methods.classStringToFloatConverterDeprecated.classStringToIntegerConverterDeprecated.classStringToLongConverterDeprecated.classStringToShortConverterDeprecated.As of 8.0, no direct replacement available, seeStringToIntegerConverterMethods in com.vaadin.v7.data.util.converter that return Converter Modifier and Type Method Description <PRESENTATION,MODEL>
Converter<PRESENTATION,MODEL>ConverterFactory. createConverter(Class<PRESENTATION> presentationType, Class<MODEL> modelType)Deprecated.<PRESENTATION,MODEL>
Converter<PRESENTATION,MODEL>DefaultConverterFactory. createConverter(Class<PRESENTATION> presentationType, Class<MODEL> modelType)Deprecated.protected Converter<Date,?>DefaultConverterFactory. createDateConverter(Class<?> sourceType)Deprecated.protected Converter<String,?>DefaultConverterFactory. createStringConverter(Class<?> sourceType)Deprecated.protected <PRESENTATION,MODEL>
Converter<PRESENTATION,MODEL>DefaultConverterFactory. findConverter(Class<PRESENTATION> presentationType, Class<MODEL> modelType)Deprecated.static <PRESENTATIONTYPE,MODELTYPE>
Converter<PRESENTATIONTYPE,MODELTYPE>ConverterUtil. getConverter(Class<PRESENTATIONTYPE> presentationType, Class<MODELTYPE> modelType, VaadinSession session)Deprecated.Finds a converter that can convert from the given presentation type to the given model type and back.Methods in com.vaadin.v7.data.util.converter with parameters of type Converter Modifier and Type Method Description static booleanConverterUtil. canConverterHandle(Converter<?,?> converter, Class<?> presentationType, Class<?> modelType)Deprecated.Checks if the given converter can handle conversion between the given presentation and model type.static booleanConverterUtil. canConverterPossiblyHandle(Converter<?,?> converter, Class<?> presentationType, Class<?> modelType)Deprecated.Checks if it possible that the given converter can handle conversion between the given presentation and model type somehow.static <PRESENTATIONTYPE,MODELTYPE>
PRESENTATIONTYPEConverterUtil. convertFromModel(MODELTYPE modelValue, Class<? extends PRESENTATIONTYPE> presentationType, Converter<PRESENTATIONTYPE,MODELTYPE> converter, Locale locale)Deprecated.Convert the given value from the data source type to the UI type.static <MODELTYPE,PRESENTATIONTYPE>
MODELTYPEConverterUtil. convertToModel(PRESENTATIONTYPE presentationValue, Class<MODELTYPE> modelType, Converter<PRESENTATIONTYPE,MODELTYPE> converter, Locale locale)Deprecated.Convert the given value from the presentation (UI) type to model (data source) type.Constructors in com.vaadin.v7.data.util.converter with parameters of type Converter Constructor Description ReverseConverter(Converter<MODEL,PRESENTATION> converter)Deprecated.Creates a converter from source to target based on a converter that converts from target to source.StringToCollectionConverter(Converter<String,?> tokenConverter, Class<?> tokenType)Deprecated.Creates converter with giventokenConverterfor convert tokens and expectedtokenType.StringToCollectionConverter(String delimiter, Converter<String,?> tokenConverter, Class<?> tokenClass)Deprecated.Creates converter with giventokenConverterfor convert tokens and expectedtokenType.StringToCollectionConverter(String delimiter, Converter<String,?> tokenConverter, Class<?> tokenClass, StringToCollectionConverter.CollectionFactory factory)Deprecated.Creates converter with giventokenConverterfor convert tokens and expectedtokenType. -
Uses of Converter in com.vaadin.v7.ui
Methods in com.vaadin.v7.ui that return Converter Modifier and Type Method Description Converter<T,Object>AbstractField. getConverter()Deprecated.Gets the converter used to convert the property data source value to the field value.Converter<?,?>Grid.Column. getConverter()Deprecated.Returns the converter instance used by this column.Converter<String,Object>Label. getConverter()Deprecated.Gets the converter used to convert the property data source value to the label value.Converter<String,Object>Table. getConverter(Object propertyId)Deprecated.Returns the converter used to format the given propertyId.Methods in com.vaadin.v7.ui with parameters of type Converter Modifier and Type Method Description static <T> elemental.json.JsonValueGrid.AbstractRenderer. encodeValue(Object modelValue, Renderer<T> renderer, Converter<?,?> converter, Locale locale)Deprecated.Converts and encodes the given data model property value using the given converter and renderer.voidAbstractField. setConverter(Converter<T,?> converter)Deprecated.Sets the converter used to convert the field value to property data source type.Grid.ColumnGrid.Column. setConverter(Converter<?,?> converter)Deprecated.Sets the converter used to convert from the property value type to the renderer presentation type.voidLabel. setConverter(Converter<String,?> converter)Deprecated.Sets the converter used to convert the label value to the property data source type.voidTable. setConverter(Object propertyId, Converter<String,?> converter)Deprecated.Sets a converter for a property id.<T> Grid.ColumnGrid.Column. setRenderer(Renderer<T> renderer, Converter<? extends T,?> converter)Deprecated.Sets the renderer for this column and the converter used to convert from the property value type to the renderer presentation type.
-