cz.mmsparams.api.lists.HistorizedListConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.lists;
import java.util.ArrayList;
import java.util.List;
public interface HistorizedListConverter
{
default List convert(List obj)
{
List list = new ArrayList<>();
for (T i : obj)
list.add(convert(i));
return list;
}
R convert(T obj);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy