i have the interface defined as below and is implemented by a single class MatchedAddressImpl.
interface MatchedAddress extends HouseHelpData, StreetHelpData, TownHelpData
public class MatchedAddressDetails implements MatchedAddress
the client should be provided different views (HouseHelpData or StreetHelpData or TownHelpData or MatchedAddress) of the same MatchedAddressImpl. So I have provided the below API for the clients.
public List<MatchedAddress> matchedAddresses()
public List<? extends HouseHelpData> houseHelpData()
public List<? extends StreetHelpData> streetHelpData();
public List<TownHelpData> townHelpData();
the problem is that the client need to do some thing like below and i read in effective java that the return types should not contain wild cards as the clinet usage looks ugly...i appreciate if someone can help me improve the API. what i want is to remove the wildcards from the above methods...thx in advance
List<? extends StreetHelpData> streetHelpDataList = details.streetHelpData();