Reputation: 16908
What is the equivalent of C# CollectionBase in Java?
Upvotes: 0
Views: 515
Reputation: 269687
AbstractCollection
is probably the closest; but since CollectionBase
implements IList
, you might want AbstractList
instead.
Upvotes: 6