Added Methods |
boolean add(Object )
|
add is not a supported operation in NSArray |
void add(int, Object)
|
add is not a supported operation in NSArray |
boolean addAll(int, Collection)
|
addAll is not a supported operation in NSArray |
boolean addAll(Collection )
|
addAll is not a supported operation in NSArray |
ArrayList arrayList()
|
Creates a java.util.ArrayList with the same contents as this object. |
void clear()
|
Operation not supported |
boolean contains(Object )
|
Returns true if NSArray contains the specified element. |
boolean containsAll(Collection )
|
@see List#containsAll |
Object get(int )
|
@param index - index of element to lookup |
int indexOf(Object )
|
@see List#indexOf |
boolean isEmpty()
|
Returns true if this list contains no elements. |
Iterator iterator()
|
@see List#iterator |
int lastIndexOf(Object )
|
@see List#lastIndexOf |
ListIterator listIterator()
|
@see List#listIterator |
ListIterator listIterator(int )
|
@param index of first element to be returned from the list iterator (by a call to the next method). |
boolean remove(Object )
|
Operation not supported |
Object remove(int )
|
Operation not supported |
boolean removeAll(Collection )
|
Operation not supported |
boolean retainAll(Collection )
|
Operation not supported |
Object set(int, Object)
|
@see List#set |
int size()
|
@see List#size |
List subList(int, int)
|
@see List#subList |
Object[] toArray()
|
@return Returns a copy of array containing all of the elements in this list in proper sequence |
Object[] toArray(Object[] )
|
@see List#toArray |