List Interface
List interface is available Java 1.2
Generally list is a Data Structure it has some useful characteristics.
List is an Ordered collection of Elements.
User can insert the element in the List.
User can access elements from the list using the Index.
User can insert duplicate elements in the List.
List Interface provides special iterator called ListIterator
Super Interfaces of List are :
Collection<E>
Iterable<E>
Following Classes Implements the List Interface:
Generally list is a Data Structure it has some useful characteristics.
List is an Ordered collection of Elements.
User can insert the element in the List.
User can access elements from the list using the Index.
User can insert duplicate elements in the List.
List Interface provides special iterator called ListIterator
Super Interfaces of List are :
Collection<E>
Iterable<E>
Following Classes Implements the List Interface:
- AbstractList
- AbstractSequentialList
- ArrayList
- AttributeList
- CopyOnWriteArrayList
- LinkedList
- RoleList
- RoleUnresolvedList
- Stack
- Vector