Interface ImmutableCharSet
- All Superinterfaces:
CharIterable,CharSet,ImmutableCharCollection,PrimitiveIterable
- All Known Implementing Classes:
AbstractImmutableCharSet
public interface ImmutableCharSet extends ImmutableCharCollection, CharSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
- Since:
- 3.0.
-
Method Summary
Modifier and Type Method Description <V> ImmutableSet<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.ImmutableCharSetnewWith(char element)ImmutableCharSetnewWithAll(CharIterable elements)ImmutableCharSetnewWithout(char element)ImmutableCharSetnewWithoutAll(CharIterable elements)ImmutableCharSetreject(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.ImmutableCharSetselect(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.default ImmutableCharSettap(CharProcedure procedure)Methods inherited from interface org.eclipse.collections.api.CharIterable
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, chunk, 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, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedListMethods inherited from interface org.eclipse.collections.api.set.primitive.CharSet
equals, freeze, hashCode, toImmutableMethods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
Method Details
-
select
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.- Specified by:
selectin interfaceCharIterable- Specified by:
selectin interfaceCharSet- Specified by:
selectin interfaceImmutableCharCollection
-
reject
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.- Specified by:
rejectin interfaceCharIterable- Specified by:
rejectin interfaceCharSet- Specified by:
rejectin interfaceImmutableCharCollection
-
tap
- Specified by:
tapin interfaceCharIterable- Specified by:
tapin interfaceCharSet- Specified by:
tapin interfaceImmutableCharCollection- Since:
- 9.0.
-
collect
Description copied from interface:CharIterableReturns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collectin interfaceCharIterable- Specified by:
collectin interfaceCharSet- Specified by:
collectin interfaceImmutableCharCollection
-
newWith
- Specified by:
newWithin interfaceImmutableCharCollection
-
newWithout
- Specified by:
newWithoutin interfaceImmutableCharCollection
-
newWithAll
- Specified by:
newWithAllin interfaceImmutableCharCollection
-
newWithoutAll
- Specified by:
newWithoutAllin interfaceImmutableCharCollection
-