@Generated(date="2023-04-24T17:14:49+0800",
value="AbstractKTypeCollection.java")
abstract class AbstractCharCollection
extends java.lang.Object
implements CharCollection
| Constructor and Description |
|---|
AbstractCharCollection() |
| Modifier and Type | Method and Description |
|---|---|
int |
removeAll(CharLookupContainer c)
Default implementation uses a predicate for removal.
|
int |
retainAll(CharLookupContainer c)
Default implementation uses a predicate for retaining.
|
int |
retainAll(CharPredicate predicate)
Default implementation redirects to
CharCollection.removeAll(CharPredicate) and
negates the predicate. |
char[] |
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(CharLookupContainer c)
removeAll in interface CharCollectionpublic int retainAll(CharLookupContainer c)
retainAll in interface CharCollectionpublic int retainAll(CharPredicate predicate)
CharCollection.removeAll(CharPredicate) and
negates the predicate.retainAll in interface CharCollectionpublic char[] toArray()
toArray in interface CharContainerpublic java.lang.String toString()
toString in class java.lang.Object