public class SimpleLongArrayList extends AbstractLongList
long
elements; implemented with arrays; not efficient; just to demonstrate which methods you must override to implement a fully functional list.
First see the package summary and javadoc tree view to get the broad picture.Modifier and Type | Field and Description |
---|---|
protected long[] |
elements
The array buffer into which the elements of the list are stored.
|
protected int |
size
The size of the list.
|
serialVersionUID
Constructor and Description |
---|
SimpleLongArrayList()
Constructs an empty list.
|
SimpleLongArrayList(int initialCapacity)
Constructs an empty list with the specified initial capacity.
|
SimpleLongArrayList(long[] elements)
Constructs a list containing the specified elements.
|
Modifier and Type | Method and Description |
---|---|
void |
ensureCapacity(int minCapacity)
Ensures that the receiver can hold at least the specified number of elements without needing to allocate new internal memory.
|
protected long |
getQuick(int index)
Returns the element at the specified position in the receiver; WARNING: Does not check preconditions.
|
protected void |
setQuick(int index,
long element)
Replaces the element at the specified position in the receiver with the specified element; WARNING: Does not check preconditions.
|
void |
trimToSize()
Trims the capacity of the receiver to be the receiver's current
size.
|
add, addAllOfFromTo, beforeInsert, beforeInsertAllOfFromTo, beforeInsertDummies, binarySearch, binarySearchFromTo, clone, contains, delete, elements, elements, equals, fillFromToWith, forEach, get, indexOf, indexOfFromTo, lastIndexOf, lastIndexOfFromTo, mergeSortFromTo, mergeSortFromTo, partFromTo, quickSortFromTo, quickSortFromTo, removeAll, removeFromTo, replaceFromToWithFrom, replaceFromToWithFromTo, replaceFromWith, retainAll, reverse, set, setSizeRaw, shuffleFromTo, size, times, toList, toString
addAllOf, beforeInsertAllOf, checkRange, checkRangeFromTo, clear, mergeSort, quickSort, remove, setSize, shuffle, sort, sortFromTo
isEmpty
protected long[] elements
protected int size
public SimpleLongArrayList()
public SimpleLongArrayList(long[] elements)
elements
- the array to be backed by the the constructed listpublic SimpleLongArrayList(int initialCapacity)
initialCapacity
- the number of elements the receiver can hold without auto-expanding itself by allocating new internal memory.public void ensureCapacity(int minCapacity)
ensureCapacity
in class AbstractLongList
minCapacity
- the desired minimum capacity.protected long getQuick(int index)
getQuick
in class AbstractLongList
index
- index of element to return.protected void setQuick(int index, long element)
setQuick
in class AbstractLongList
index
- index of element to replace.element
- element to be stored at the specified position.public void trimToSize()
trimToSize
in class AbstractList
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.