Methods Summary |
---|
public void | add(int arg0, java.lang.Object arg1)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | add(java.lang.Object arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | addAll(java.util.Collection arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | addAll(int arg0, java.util.Collection arg1)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public void | clear()
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public java.lang.Object | clone()
return delegate.clone();
|
public boolean | contains(java.lang.Object elem)
return delegate.contains(elem);
|
public boolean | containsAll(java.util.Collection c)
return delegate.containsAll(c);
|
public void | ensureCapacity(int arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | equals(java.lang.Object o)
return delegate.equals(o);
|
public java.lang.Object | get(int index)
return delegate.get(index);
|
public int | hashCode()
return delegate.hashCode();
|
public int | indexOf(java.lang.Object elem)
return delegate.indexOf(elem);
|
public boolean | isEmpty()
return delegate.isEmpty();
|
public java.util.Iterator | iterator()
return new ImmutableArrayListIterator(super.listIterator());
|
public int | lastIndexOf(java.lang.Object elem)
return delegate.lastIndexOf(elem);
|
public java.util.ListIterator | listIterator()
return new ImmutableArrayListIterator(super.listIterator());
|
public java.util.ListIterator | listIterator(int index)
return new ImmutableArrayListIterator(super.listIterator(index));
|
public java.lang.Object | remove(int arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | remove(java.lang.Object arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | removeAll(java.util.Collection arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
protected void | removeRange(int arg0, int arg1)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public boolean | retainAll(java.util.Collection arg0)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public java.lang.Object | set(int arg0, java.lang.Object arg1)
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
public int | size()
return delegate.size();
|
public java.util.List | subList(int fromIndex, int toIndex)
return delegate.subList(fromIndex, toIndex);
|
public java.lang.Object[] | toArray(java.lang.Object[] a)
return delegate.toArray(a);
|
public java.lang.Object[] | toArray()
return delegate.toArray();
|
public java.lang.String | toString()
return delegate.toString();
|
public void | trimToSize()
throw new UnsupportedOperationException("Target list is immutable; mutator methods are not supported");
|
private java.lang.Object | writeReplace()
return delegate;
|