com.vaadin.data.util.converter.

Interface ConverterFactory

  • All Superinterfaces:

    Serializable

    All Known Implementing Classes:

    DefaultConverterFactory


    public interface ConverterFactory
    extends Serializable

    Factory interface for providing Converters based on a presentation type and a model type.

    Since:

    7.0

    Author:

    Vaadin Ltd.

    • Method Summary

      All Methods
      Modifier and Type Method and Description
      <PRESENTATION,MODEL>
      Converter<PRESENTATION,MODEL>
      createConverter(Class<PRESENTATION> presentationType, Class<MODEL> modelType) 
    • Method Detail

      • createConverter

        <PRESENTATION,MODEL> Converter<PRESENTATION,MODEL> createConverter(Class<PRESENTATION> presentationType,
                                                                           Class<MODEL> modelType)