9 package javolution.util.internal.table;
27 throw new UnsupportedOperationException(
"Read-Only Collection.");
32 throw new UnsupportedOperationException(
"Unmodifiable");
37 throw new UnsupportedOperationException(
"Read-Only Collection.");
42 return target().indexOf(o);
47 return target().lastIndexOf(o);
51 public E
remove(
int index) {
52 throw new UnsupportedOperationException(
"Read-Only Collection.");
57 throw new UnsupportedOperationException(
"Read-Only Collection.");
66 public E
get(
int index) {
67 return target().get(index);
77 return target().comparator();