All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.t3t5u.common.database.Converter Maven / Gradle / Ivy

The newest version!
package com.github.t3t5u.common.database;

import java.util.List;

public interface Converter {
	T toModel(E entity);

	@Deprecated
	T toModel(E entity, T model);

	List toModels(List entities);

	E toEntity(T model);

	E toEntity(T model, E entity);

	List toEntities(List models);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy