CharIterable, PrimitiveIterableImmutableCharSet, MutableCharSetAbstractCharSet, AbstractImmutableCharSet, AbstractMutableCharKeySet, CharHashSet, SynchronizedCharSet, UnmodifiableCharSetpublic interface CharSet extends CharIterable
| Modifier and Type | Method | Description |
|---|---|---|
<V> SetIterable<V> |
collect(CharToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
boolean |
equals(java.lang.Object o) |
Follows the same general contract as
Set.equals(Object). |
CharSet |
freeze() |
Returns a frozen copy of this set.
|
int |
hashCode() |
Follows the same general contract as
Set.hashCode(). |
CharSet |
reject(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
CharSet |
select(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
default CharSet |
tap(CharProcedure procedure) |
|
ImmutableCharSet |
toImmutable() |
Returns an immutable copy of this set.
|
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringdefault CharSet tap(CharProcedure procedure)
tap in interface CharIterableboolean equals(java.lang.Object o)
Set.equals(Object).equals in class java.lang.Objectint hashCode()
Set.hashCode().hashCode in class java.lang.ObjectCharSet select(CharPredicate predicate)
CharIterableselect in interface CharIterableCharSet reject(CharPredicate predicate)
CharIterablereject in interface CharIterable<V> SetIterable<V> collect(CharToObjectFunction<? extends V> function)
CharIterablecollect in interface CharIterableCharSet freeze()
ImmutableCharSet toImmutable()
Copyright © 2004–2018. All rights reserved.