E - List Type@Deprecated public class ConcurrentList<E> extends ArrayList<E>
Taken from: https://github.com/weaondara/BungeePerms/blob/master/src/main/java/net/alpenblock/bungeeperms/util/ConcurrentList.java
| Modifier and Type | Class and Description | 
|---|---|
class  | 
ConcurrentList.ListItr
Deprecated.  
  | 
modCount| Constructor and Description | 
|---|
ConcurrentList()
Deprecated.  
  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
add(E e)
Deprecated.  
  | 
void | 
add(int index,
   E element)
Deprecated.  
  | 
boolean | 
addAll(Collection<? extends E> c)
Deprecated.  
  | 
boolean | 
addAll(int index,
      Collection<? extends E> c)
Deprecated.  
  | 
void | 
clear()
Deprecated.  
  | 
Object | 
clone()
Deprecated.  
  | 
boolean | 
contains(Object o)
Deprecated.  
  | 
void | 
ensureCapacity(int minCapacity)
Deprecated.  
  | 
E | 
get(int index)
Deprecated.  
  | 
int | 
indexOf(Object o)
Deprecated.  
  | 
Iterator<E> | 
iterator()
Deprecated.  
  | 
int | 
lastIndexOf(Object o)
Deprecated.  
  | 
ListIterator<E> | 
listIterator()
Deprecated.  
  | 
E | 
remove(int index)
Deprecated.  
  | 
boolean | 
remove(Object o)
Deprecated.  
  | 
boolean | 
removeAll(Collection<?> c)
Deprecated.  
  | 
boolean | 
retainAll(Collection<?> c)
Deprecated.  
  | 
E | 
set(int index,
   E element)
Deprecated.  
  | 
List<E> | 
subList(int fromIndex,
       int toIndex)
Deprecated.  
  | 
Object[] | 
toArray()
Deprecated.  
  | 
<T> T[] | 
toArray(T[] a)
Deprecated.  
  | 
void | 
trimToSize()
Deprecated.  
  | 
forEach, isEmpty, listIterator, removeIf, removeRange, replaceAll, size, sort, spliteratorequals, hashCodecontainsAll, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsAll, equals, hashCodeparallelStream, streampublic boolean add(E e)
public void add(int index,
                E element)
public boolean addAll(Collection<? extends E> c)
public boolean addAll(int index,
                      Collection<? extends E> c)
public void clear()
public boolean contains(Object o)
public void ensureCapacity(int minCapacity)
ensureCapacity in class ArrayList<E>public E get(int index)
public int indexOf(Object o)
public int lastIndexOf(Object o)
lastIndexOf in interface List<E>lastIndexOf in class ArrayList<E>public E remove(int index)
public boolean remove(Object o)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public Object[] toArray()
public <T> T[] toArray(T[] a)
public void trimToSize()
trimToSize in class ArrayList<E>public ListIterator<E> listIterator()
listIterator in interface List<E>listIterator in class ArrayList<E>Copyright © 2016–2021. All rights reserved.