Hey, I'm initializing a ListRepository with two different types of initialization lists. The best way would be something like this.
public ListRepository(String id, List<PrimaryKey> initilizationList)
{
// Load objects from data source via primary key.
}
public ListRepository(String id, List<DomainObject> initilizationList)
{
// Store objects directly
}
Unfortunately this is not possible due to runtime type erasure. I don't like a constructor approach with List<?> as an argument, this leads to an ugly instanceof check of the first entry, to determine the list type and handle it.
How do you solve such a problem with an intuitive and clean API?