@Generated(date="2023-04-24T17:14:49+0800",
value="AbstractKTypeCollection.java")
abstract class AbstractIntCollection
extends java.lang.Object
implements IntCollection
| Constructor and Description |
|---|
AbstractIntCollection() |
| Modifier and Type | Method and Description |
|---|---|
int |
removeAll(IntLookupContainer c)
Default implementation uses a predicate for removal.
|
int |
retainAll(IntLookupContainer c)
Default implementation uses a predicate for retaining.
|
int |
retainAll(IntPredicate predicate)
Default implementation redirects to
IntCollection.removeAll(IntPredicate) and
negates the predicate. |
int[] |
toArray()
Default implementation of copying to an array.
|
java.lang.String |
toString()
Convert the contents of this container to a human-friendly string.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitclear, release, removeAll, removeAllpublic int removeAll(IntLookupContainer c)
removeAll in interface IntCollectionpublic int retainAll(IntLookupContainer c)
retainAll in interface IntCollectionpublic int retainAll(IntPredicate predicate)
IntCollection.removeAll(IntPredicate) and
negates the predicate.retainAll in interface IntCollectionpublic int[] toArray()
toArray in interface IntContainerpublic java.lang.String toString()
toString in class java.lang.Object