public interface GenericArray<T> extends List<T>, GenericContainer
Modifier and Type | Method and Description |
---|---|
T |
peek()
The current content of the location where
List.add(Object) would next
store an element, if any. |
void |
reverse()
Reverses the order of the elements in this array.
|
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray
getSchema
T peek()
List.add(Object)
would next
store an element, if any. This permits reuse of arrays and their elements
without allocating new objects.void reverse()
Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.