Package net.minecraft.util.collection
Class DefaultedList<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
net.minecraft.util.collection.DefaultedList<E>
- All Implemented Interfaces:
Iterable<E>,Collection<E>,List<E>
public class DefaultedList<E> extends AbstractList<E>
-
Field Summary
Fields Modifier and Type Field Description private List<E>delegateprivate EinitialElementFields inherited from class java.util.AbstractList
modCount -
Constructor Summary
Constructors Modifier Constructor Description protectedDefaultedList()protectedDefaultedList(List<E> delegate, E initialElement) -
Method Summary
Modifier and Type Method Description voidadd(int value, E element)voidclear()static <E> DefaultedList<E>copyOf(E defaultValue, E[] values)Eget(int index)static <E> DefaultedList<E>of()static <E> DefaultedList<E>ofSize(int size, E defaultValue)Eremove(int index)Eset(int index, E element)intsize()Methods inherited from class java.util.AbstractList
add, addAll, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subListMethods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, sort, spliterator, toArray, toArray
-
Field Details
-
delegate
-
initialElement
-
-
Constructor Details
-
DefaultedList
protected DefaultedList() -
DefaultedList
-
-
Method Details
-
of
-
ofSize
-
copyOf
-
get
-
set
-
add
-
remove
-
size
public int size()- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceList<E>- Specified by:
sizein classAbstractCollection<E>
-
clear
public void clear()- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceList<E>- Overrides:
clearin classAbstractList<E>
-