I am trying to understand generics in Java.
private List<Own> l = new ArrayList<Own>(); I have the following error :
no instance of Typed array variable T exist so that List<Own> conform to T[] when I pass it in a method (readTypedArray) that expects T[].
private List<Own> list = new ArrayList<Own>(); private OwnParceable(Parcel in) { in.readTypedArray(list, CategoriesParceable.CREATOR); }
Listis not[].