Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module : java.base - Package : java.util
Version documentée : Java SE 17

Interface « List<E> »

Informations générales

Liste des attributs

Tous les attributs Attributs d'instance Attributs statiques Attributs dépréciés
QualificateursTypeNomDescription

Liste des constructeurs

Constructeurs Constructeurs dépréciés
ConstructeurDescription

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes concrètes Méthodes abstraites Méthodes dépréciées
QualificateursType de retourPrototype de la méthodeDescription
public abstract void add( int index, E element )
public abstract boolean add( E arg0 )
public abstract boolean addAll( int index, Collection<? extends E> c )
public abstract boolean addAll( Collection<? extends E> c )
public abstract void clear()
public abstract boolean contains( Object o )
public abstract boolean containsAll( Collection<?> c )
public static <E> List<E> copyOf( Collection<? extends E> coll )
public abstract boolean equals( Object o )
public abstract E get( int index )
public abstract int hashCode()
public abstract int indexOf( Object o )
public abstract boolean isEmpty()
public abstract Iterator<E> iterator()
public abstract int lastIndexOf( Object o )
public abstract ListIterator<E> listIterator( int index )
public abstract ListIterator<E> listIterator()
public static <E> List<E> of( E e1, E e2, E e3, E e4 )
public static <E> List<E> of( E e1, E e2, E e3 )
public static <E> List<E> of( E e1, E e2 )
public static <E> List<E> of( E arg0 )
public static <E> List<E> of()
public static <E> List<E> of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8 )
public static <E> List<E> of( E e1, E e2, E e3, E e4, E e5, E e6, E e7 )
public static <E> List<E> of( E e1, E e2, E e3, E e4, E e5, E e6 )
public static <E> List<E> of( E e1, E e2, E e3, E e4, E e5 )
public static <E> List<E> of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10 )
public static <E> List<E> of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9 )
public static <E> List<E> of( E[] arg0 )
public abstract boolean remove( Object o )
public abstract E remove( int index )
public abstract boolean removeAll( Collection<?> c )
public default void replaceAll( UnaryOperator<E> operator )
public abstract boolean retainAll( Collection<?> c )
public abstract E set( int index, E element )
public abstract int size()
public default void sort( Comparator<? super E> c )
public default Spliterator<E> spliterator()
public abstract List<E> subList( int fromIndex, int toIndex )
public abstract Object[] toArray()
public abstract <T> T[] toArray( T[] a )