java.util
static class: Collections.UnmodifiableRandomAccessList [javadoc |
source]
java.lang.Object
java.util.Collections$UnmodifiableCollection
java.util.Collections$UnmodifiableList
java.util.Collections$UnmodifiableRandomAccessList
All Implemented Interfaces:
RandomAccess, List, Collection, Serializable
| Method from java.util.Collections$UnmodifiableRandomAccessList Summary: |
|---|
|
subList |
| Methods from java.util.Collections$UnmodifiableList: |
|---|
|
add, addAll, equals, get, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, set, subList |
| Methods from java.util.Collections$UnmodifiableCollection: |
|---|
|
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.util.Collections$UnmodifiableRandomAccessList Detail: |
public List subList(int fromIndex,
int toIndex) {
return new UnmodifiableRandomAccessList< E >(
list.subList(fromIndex, toIndex));
}
|