I think you a little bit confused. Generic types and abstract classes or Interface are not the same at all, they serves a different goals for different approaches in application design. Abstract classes, interfaces is for generalization of common functionality of entities group, while later on this API could be implemented differently, but since polymorphism is involved it will not care no one.
On other hand, some time you have very similar implementation of something and the only difference is the type of the objects you are working with, here you will need a generics, here you also would like to use polymorphism, but there is not point to multiply objects using inheritance only. For that purpose it's much clear, just to define an interface, make an implementation and let to the end user decide which kind of object he wants to use.
The best example is List, where the main purpose of list is to store element and List implementor should not care which type of objects you are going to use, so later you will be able just define List and make use of integer list.