com.vaadin.data.util.converter.ConverterFactory Maven / Gradle / Ivy
/*
* Vaadin Framework 7
*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.data.util.converter;
import java.io.Serializable;
/**
* Factory interface for providing Converters based on a presentation type and a
* model type.
*
* @author Vaadin Ltd.
* @since 7.0
*
*/
public interface ConverterFactory extends Serializable {
public Converter createConverter(
Class presentationType, Class modelType);
}