Example usage for Java android.util ArraySet fields, constructors, methods, implement or subclass
The text is from its open source code.
ArraySet() Create a new empty ArraySet. | |
ArraySet(int capacity) Create a new ArraySet with a given initial capacity. | |
ArraySet(ArraySet Create a new ArraySet with the mappings from the given ArraySet. | |
ArraySet(Collection |
boolean | add(E value) Adds the specified object to this set. |
void | addAll(ArraySet extends E> array) Perform a #add(Object) of all values in array |
boolean | addAll(Collection extends E> collection) Perform an #add(Object) of all values in collection |
void | clear() Make the array map empty. |
boolean | contains(Object key) Check whether a value exists in the set. |
boolean | remove(Object object) Removes the specified object from this set. |