java.lang.Iterable<E>
, java.util.Collection<E>
, java.util.List<E>
@Deprecated
public final class MiniList<E>
extends java.lang.Object
implements java.util.List<E>
Constructor | Description |
---|---|
MiniList() |
Deprecated.
|
MiniList(E element) |
Deprecated.
|
MiniList(E[] e) |
Deprecated.
|
MiniList(java.util.Collection<? extends E> c) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
void |
add(int index,
E element) |
Deprecated.
|
boolean |
add(E e) |
Deprecated.
|
boolean |
addAll(int index,
java.util.Collection<? extends E> c) |
Deprecated.
|
boolean |
addAll(java.util.Collection<? extends E> c) |
Deprecated.
|
void |
clear() |
Deprecated.
|
boolean |
contains(java.lang.Object o) |
Deprecated.
|
boolean |
containsAll(java.util.Collection<?> c) |
Deprecated.
|
boolean |
equals(java.lang.Object obj) |
Deprecated.
|
E |
get(int index) |
Deprecated.
|
int |
hashCode() |
Deprecated.
|
int |
indexOf(java.lang.Object o) |
Deprecated.
|
boolean |
isEmpty() |
Deprecated.
|
java.util.Iterator<E> |
iterator() |
Deprecated.
|
int |
lastIndexOf(java.lang.Object o) |
Deprecated.
|
java.util.ListIterator<E> |
listIterator() |
Deprecated.
|
java.util.ListIterator<E> |
listIterator(int index) |
Deprecated.
|
E |
remove(int index) |
Deprecated.
|
boolean |
remove(java.lang.Object o) |
Deprecated.
|
boolean |
removeAll(java.util.Collection<?> c) |
Deprecated.
|
boolean |
retainAll(java.util.Collection<?> c) |
Deprecated.
|
E |
set(int index,
E element) |
Deprecated.
|
int |
size() |
Deprecated.
|
java.util.List<E> |
subList(int fromIndex,
int toIndex) |
Deprecated.
|
java.lang.Object[] |
toArray() |
Deprecated.
|
<T> T[] |
toArray(T[] a) |
Deprecated.
|
java.lang.String |
toString() |
Deprecated.
|
public MiniList()
public MiniList(java.util.Collection<? extends E> c)
public MiniList(E[] e)
public MiniList(E element)
public int size()
public boolean isEmpty()
public boolean contains(java.lang.Object o)
public java.util.Iterator<E> iterator()
public java.lang.Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(E e)
public boolean remove(java.lang.Object o)
public boolean containsAll(java.util.Collection<?> c)
public boolean addAll(java.util.Collection<? extends E> c)
public boolean addAll(int index, java.util.Collection<? extends E> c)
addAll
in interface java.util.List<E>
public boolean removeAll(java.util.Collection<?> c)
public boolean retainAll(java.util.Collection<?> c)
public void clear()
public E set(int index, E element)
set
in interface java.util.List<E>
public void add(int index, E element)
add
in interface java.util.List<E>
public int indexOf(java.lang.Object o)
indexOf
in interface java.util.List<E>
public int lastIndexOf(java.lang.Object o)
lastIndexOf
in interface java.util.List<E>
public java.util.ListIterator<E> listIterator()
listIterator
in interface java.util.List<E>
public java.util.ListIterator<E> listIterator(int index)
listIterator
in interface java.util.List<E>
public java.util.List<E> subList(int fromIndex, int toIndex)
subList
in interface java.util.List<E>
public boolean equals(java.lang.Object obj)
public int hashCode()
public java.lang.String toString()
toString
in class java.lang.Object