import java.util.List; public interface Merge { public List mergeA(List> lists); public List mergeB(List> lists); public List mergeC(List> lists); }