Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.CharPredicate
-
Packages that use CharPredicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.factory.primitive This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of CharPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type CharPredicate Modifier and Type Method Description booleanCharIterable. allSatisfy(CharPredicate predicate)Returns true if all of the elements in the CharIterable return true for the specified predicate, otherwise returns false.booleanCharIterable. anySatisfy(CharPredicate predicate)Returns true if any of the elements in the CharIterable return true for the specified predicate, otherwise returns false.intCharIterable. count(CharPredicate predicate)Returns a count of the number of elements in the CharIterable that return true for the specified predicate.charCharIterable. detectIfNone(CharPredicate predicate, char ifNone)default booleanCharIterable. noneSatisfy(CharPredicate predicate)Returns true if none of the elements in the CharIterable return true for the specified predicate, otherwise returns false.CharIterableCharIterable. reject(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.default <R extends MutableCharCollection>
RCharIterable. reject(CharPredicate predicate, R target)Same asCharIterable.reject(CharPredicate), only the results are added to the target MutableCharCollection.LazyCharIterableLazyCharIterable. reject(CharPredicate predicate)CharIterableCharIterable. select(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.default <R extends MutableCharCollection>
RCharIterable. select(CharPredicate predicate, R target)Same asCharIterable.select(CharPredicate), only the results are added to the target MutableCharCollection.LazyCharIterableLazyCharIterable. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type CharPredicate Modifier and Type Method Description CharBagCharBag. reject(CharPredicate predicate)ImmutableCharBagImmutableCharBag. reject(CharPredicate predicate)MutableCharBagMutableCharBag. reject(CharPredicate predicate)CharBagCharBag. select(CharPredicate predicate)ImmutableCharBagImmutableCharBag. select(CharPredicate predicate)MutableCharBagMutableCharBag. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type CharPredicate Modifier and Type Method Description ImmutableCharCollectionImmutableCharCollection. reject(CharPredicate predicate)MutableCharCollectionMutableCharCollection. reject(CharPredicate predicate)default booleanMutableCharCollection. removeIf(CharPredicate predicate)ImmutableCharCollectionImmutableCharCollection. select(CharPredicate predicate)MutableCharCollectionMutableCharCollection. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type CharPredicate Modifier and Type Method Description CharListCharList. reject(CharPredicate predicate)ImmutableCharListImmutableCharList. reject(CharPredicate predicate)MutableCharListMutableCharList. reject(CharPredicate predicate)CharListCharList. select(CharPredicate predicate)ImmutableCharListImmutableCharList. select(CharPredicate predicate)MutableCharListMutableCharList. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharPredicate Modifier and Type Method Description CharBagCharValuesMap. reject(CharPredicate predicate)ImmutableCharBagImmutableByteCharMap. reject(CharPredicate predicate)ImmutableCharBagImmutableCharCharMap. reject(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharMap. reject(CharPredicate predicate)ImmutableCharBagImmutableFloatCharMap. reject(CharPredicate predicate)ImmutableCharBagImmutableIntCharMap. reject(CharPredicate predicate)ImmutableCharBagImmutableLongCharMap. reject(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharMap. reject(CharPredicate predicate)ImmutableCharBagImmutableShortCharMap. reject(CharPredicate predicate)MutableCharBagMutableCharValuesMap. reject(CharPredicate predicate)MutableCharCollectionMutableObjectCharMap. reject(CharPredicate predicate)CharBagCharValuesMap. select(CharPredicate predicate)ImmutableCharBagImmutableByteCharMap. select(CharPredicate predicate)ImmutableCharBagImmutableCharCharMap. select(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharMap. select(CharPredicate predicate)ImmutableCharBagImmutableFloatCharMap. select(CharPredicate predicate)ImmutableCharBagImmutableIntCharMap. select(CharPredicate predicate)ImmutableCharBagImmutableLongCharMap. select(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharMap. select(CharPredicate predicate)ImmutableCharBagImmutableShortCharMap. select(CharPredicate predicate)MutableCharBagMutableCharValuesMap. select(CharPredicate predicate)MutableCharCollectionMutableObjectCharMap. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type CharPredicate Modifier and Type Method Description OrderedCharIterableOrderedCharIterable. reject(CharPredicate predicate)ReversibleCharIterableReversibleCharIterable. reject(CharPredicate predicate)OrderedCharIterableOrderedCharIterable. select(CharPredicate predicate)ReversibleCharIterableReversibleCharIterable. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type CharPredicate Modifier and Type Method Description CharSetCharSet. reject(CharPredicate predicate)ImmutableCharSetImmutableCharSet. reject(CharPredicate predicate)MutableCharSetMutableCharSet. reject(CharPredicate predicate)CharSetCharSet. select(CharPredicate predicate)ImmutableCharSetImmutableCharSet. select(CharPredicate predicate)MutableCharSetMutableCharSet. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type CharPredicate Modifier and Type Method Description CharStackCharStack. reject(CharPredicate predicate)ImmutableCharStackImmutableCharStack. reject(CharPredicate predicate)MutableCharStackMutableCharStack. reject(CharPredicate predicate)CharStackCharStack. select(CharPredicate predicate)ImmutableCharStackImmutableCharStack. select(CharPredicate predicate)MutableCharStackMutableCharStack. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanImmutableCharEmptyBag. allSatisfy(CharPredicate predicate)booleanImmutableCharHashBag. allSatisfy(CharPredicate predicate)booleanImmutableCharSingletonBag. allSatisfy(CharPredicate predicate)booleanImmutableCharEmptyBag. anySatisfy(CharPredicate predicate)booleanImmutableCharHashBag. anySatisfy(CharPredicate predicate)booleanImmutableCharSingletonBag. anySatisfy(CharPredicate predicate)intImmutableCharEmptyBag. count(CharPredicate predicate)intImmutableCharHashBag. count(CharPredicate predicate)intImmutableCharSingletonBag. count(CharPredicate predicate)charImmutableCharEmptyBag. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharHashBag. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharSingletonBag. detectIfNone(CharPredicate predicate, char ifNone)booleanImmutableCharEmptyBag. noneSatisfy(CharPredicate predicate)booleanImmutableCharHashBag. noneSatisfy(CharPredicate predicate)booleanImmutableCharSingletonBag. noneSatisfy(CharPredicate predicate)ImmutableCharBagImmutableCharEmptyBag. reject(CharPredicate predicate)ImmutableCharBagImmutableCharHashBag. reject(CharPredicate predicate)ImmutableCharBagImmutableCharSingletonBag. reject(CharPredicate predicate)ImmutableCharBagImmutableCharEmptyBag. select(CharPredicate predicate)ImmutableCharBagImmutableCharHashBag. select(CharPredicate predicate)ImmutableCharBagImmutableCharSingletonBag. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanCharHashBag. allSatisfy(CharPredicate predicate)booleanCharHashBag. anySatisfy(CharPredicate predicate)intCharHashBag. count(CharPredicate predicate)charCharHashBag. detectIfNone(CharPredicate predicate, char ifNone)booleanCharHashBag. noneSatisfy(CharPredicate predicate)CharHashBagCharHashBag. reject(CharPredicate predicate)MutableCharBagSynchronizedCharBag. reject(CharPredicate predicate)MutableCharBagUnmodifiableCharBag. reject(CharPredicate predicate)booleanCharHashBag. removeIf(CharPredicate predicate)CharHashBagCharHashBag. select(CharPredicate predicate)MutableCharBagSynchronizedCharBag. select(CharPredicate predicate)MutableCharBagUnmodifiableCharBag. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.block.factory.primitive
Fields in org.eclipse.collections.impl.block.factory.primitive declared as CharPredicate Modifier and Type Field Description private static CharPredicateCharPredicates. ALWAYS_FALSEprivate static CharPredicateCharPredicates. ALWAYS_TRUEprivate CharPredicateCharPredicates.NotCharPredicate. negateprivate CharPredicateCharPredicates.AndCharPredicate. oneprivate CharPredicateCharPredicates.OrCharPredicate. oneprivate CharPredicateCharPredicates.AndCharPredicate. twoprivate CharPredicateCharPredicates.OrCharPredicate. twoMethods in org.eclipse.collections.impl.block.factory.primitive that return CharPredicate Modifier and Type Method Description static CharPredicateCharPredicates. alwaysFalse()static CharPredicateCharPredicates. alwaysTrue()static CharPredicateCharPredicates. and(CharPredicate one, CharPredicate two)static CharPredicateCharPredicates. equal(char expected)static CharPredicateCharPredicates. greaterThan(char expected)static CharPredicateCharPredicates. isDigit()static CharPredicateCharPredicates. isDigitOrDot()static CharPredicateCharPredicates. isLetter()static CharPredicateCharPredicates. isLetterOrDigit()static CharPredicateCharPredicates. isLowerCase()static CharPredicateCharPredicates. isUndefined()static CharPredicateCharPredicates. isUpperCase()static CharPredicateCharPredicates. isWhitespace()static CharPredicateCharPredicates. lessThan(char expected)static CharPredicateCharPredicates. not(CharPredicate negate)static CharPredicateCharPredicates. or(CharPredicate one, CharPredicate two)Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type CharPredicate Modifier and Type Method Description static CharPredicateCharPredicates. and(CharPredicate one, CharPredicate two)static CharPredicateCharPredicates. not(CharPredicate negate)static CharPredicateCharPredicates. or(CharPredicate one, CharPredicate two)Constructors in org.eclipse.collections.impl.block.factory.primitive with parameters of type CharPredicate Constructor Description AndCharPredicate(CharPredicate one, CharPredicate two)NotCharPredicate(CharPredicate negate)OrCharPredicate(CharPredicate one, CharPredicate two) -
Uses of CharPredicate in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type CharPredicate Modifier and Type Field Description private MutableList<Pair<CharPredicate,CharToObjectFunction<? extends V>>>CharCaseFunction. predicateFunctionsMethods in org.eclipse.collections.impl.block.function.primitive with parameters of type CharPredicate Modifier and Type Method Description CharCaseFunction<V>CharCaseFunction. addCase(CharPredicate predicate, CharToObjectFunction<? extends V> function) -
Uses of CharPredicate in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive with type parameters of type CharPredicate Modifier and Type Field Description private MutableList<Pair<CharPredicate,CharProcedure>>CharCaseProcedure. predicateProceduresMethods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type CharPredicate Modifier and Type Method Description CharCaseProcedureCharCaseProcedure. addCase(CharPredicate predicate, CharProcedure procedure) -
Uses of CharPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanAbstractSynchronizedCharCollection. allSatisfy(CharPredicate predicate)booleanAbstractUnmodifiableCharCollection. allSatisfy(CharPredicate predicate)booleanAbstractSynchronizedCharCollection. anySatisfy(CharPredicate predicate)booleanAbstractUnmodifiableCharCollection. anySatisfy(CharPredicate predicate)intAbstractSynchronizedCharCollection. count(CharPredicate predicate)intAbstractUnmodifiableCharCollection. count(CharPredicate predicate)charAbstractSynchronizedCharCollection. detectIfNone(CharPredicate predicate, char ifNone)charAbstractUnmodifiableCharCollection. detectIfNone(CharPredicate predicate, char ifNone)booleanAbstractSynchronizedCharCollection. noneSatisfy(CharPredicate predicate)booleanAbstractUnmodifiableCharCollection. noneSatisfy(CharPredicate predicate)MutableCharCollectionAbstractSynchronizedCharCollection. reject(CharPredicate predicate)MutableCharCollectionAbstractUnmodifiableCharCollection. reject(CharPredicate predicate)booleanAbstractSynchronizedCharCollection. removeIf(CharPredicate predicate)booleanAbstractUnmodifiableCharCollection. removeIf(CharPredicate predicate)MutableCharCollectionAbstractSynchronizedCharCollection. select(CharPredicate predicate)MutableCharCollectionAbstractUnmodifiableCharCollection. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as CharPredicate Modifier and Type Field Description private CharPredicateSelectCharIterable.CountCharProcedure. predicateprivate CharPredicateSelectCharIterable. predicateprivate CharPredicateSelectCharIterable.SelectCharIterator. predicateMethods in org.eclipse.collections.impl.lazy.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanAbstractLazyCharIterable. allSatisfy(CharPredicate predicate)booleanCollectCharIterable. allSatisfy(CharPredicate predicate)booleanLazyCharIterableAdapter. allSatisfy(CharPredicate predicate)booleanSelectCharIterable. allSatisfy(CharPredicate predicate)booleanTapCharIterable. allSatisfy(CharPredicate predicate)booleanAbstractLazyCharIterable. anySatisfy(CharPredicate predicate)booleanCollectCharIterable. anySatisfy(CharPredicate predicate)booleanLazyCharIterableAdapter. anySatisfy(CharPredicate predicate)booleanSelectCharIterable. anySatisfy(CharPredicate predicate)booleanTapCharIterable. anySatisfy(CharPredicate predicate)intAbstractLazyCharIterable. count(CharPredicate predicate)intCollectCharIterable. count(CharPredicate predicate)intLazyCharIterableAdapter. count(CharPredicate predicate)intSelectCharIterable. count(CharPredicate predicate)charAbstractLazyCharIterable. detectIfNone(CharPredicate predicate, char ifNone)charLazyCharIterableAdapter. detectIfNone(CharPredicate predicate, char ifNone)charTapCharIterable. detectIfNone(CharPredicate predicate, char ifNone)booleanAbstractLazyCharIterable. noneSatisfy(CharPredicate predicate)booleanLazyCharIterableAdapter. noneSatisfy(CharPredicate predicate)booleanTapCharIterable. noneSatisfy(CharPredicate predicate)LazyCharIterableAbstractLazyCharIterable. reject(CharPredicate predicate)LazyCharIterableAbstractLazyCharIterable. select(CharPredicate predicate)Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type CharPredicate Constructor Description CountCharProcedure(CharPredicate predicate)SelectCharIterable(CharIterable delegate, CharPredicate predicate)SelectCharIterator(CharIterable iterable, CharPredicate predicate)SelectCharIterator(CharIterator iterator, CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanImmutableCharArrayList. allSatisfy(CharPredicate predicate)booleanImmutableCharEmptyList. allSatisfy(CharPredicate predicate)booleanImmutableCharSingletonList. allSatisfy(CharPredicate predicate)booleanImmutableCharArrayList. anySatisfy(CharPredicate predicate)booleanImmutableCharEmptyList. anySatisfy(CharPredicate predicate)booleanImmutableCharSingletonList. anySatisfy(CharPredicate predicate)intImmutableCharArrayList. count(CharPredicate predicate)intImmutableCharEmptyList. count(CharPredicate predicate)intImmutableCharSingletonList. count(CharPredicate predicate)charImmutableCharArrayList. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharEmptyList. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharSingletonList. detectIfNone(CharPredicate predicate, char ifNone)booleanImmutableCharEmptyList. noneSatisfy(CharPredicate predicate)booleanImmutableCharSingletonList. noneSatisfy(CharPredicate predicate)ImmutableCharListImmutableCharArrayList. reject(CharPredicate predicate)<R extends MutableCharCollection>
RImmutableCharArrayList. reject(CharPredicate predicate, R target)ImmutableCharListImmutableCharEmptyList. reject(CharPredicate predicate)ImmutableCharListImmutableCharSingletonList. reject(CharPredicate predicate)ImmutableCharListImmutableCharArrayList. select(CharPredicate predicate)<R extends MutableCharCollection>
RImmutableCharArrayList. select(CharPredicate predicate, R target)ImmutableCharListImmutableCharEmptyList. select(CharPredicate predicate)ImmutableCharListImmutableCharSingletonList. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanCharArrayList. allSatisfy(CharPredicate predicate)booleanCharArrayList. anySatisfy(CharPredicate predicate)intCharArrayList. count(CharPredicate predicate)charCharArrayList. detectIfNone(CharPredicate predicate, char ifNone)CharArrayListCharArrayList. reject(CharPredicate predicate)<R extends MutableCharCollection>
RCharArrayList. reject(CharPredicate predicate, R target)MutableCharListSynchronizedCharList. reject(CharPredicate predicate)MutableCharListUnmodifiableCharList. reject(CharPredicate predicate)booleanCharArrayList. removeIf(CharPredicate predicate)CharArrayListCharArrayList. select(CharPredicate predicate)<R extends MutableCharCollection>
RCharArrayList. select(CharPredicate predicate, R target)MutableCharListSynchronizedCharList. select(CharPredicate predicate)MutableCharListUnmodifiableCharList. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanImmutableByteCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableByteCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableByteCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableCharCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableCharCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableCharCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableDoubleCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableDoubleCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableDoubleCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableFloatCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableFloatCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableFloatCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableIntCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableIntCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableIntCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableLongCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableLongCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableLongCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableObjectCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableObjectCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableObjectCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableShortCharEmptyMap. allSatisfy(CharPredicate predicate)booleanImmutableShortCharHashMap. allSatisfy(CharPredicate predicate)booleanImmutableShortCharSingletonMap. allSatisfy(CharPredicate predicate)booleanImmutableByteCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableByteCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableByteCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableCharCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableCharCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableCharCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableDoubleCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableDoubleCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableDoubleCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableFloatCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableFloatCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableFloatCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableIntCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableIntCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableIntCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableLongCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableLongCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableLongCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableObjectCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableObjectCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableObjectCharSingletonMap. anySatisfy(CharPredicate predicate)booleanImmutableShortCharEmptyMap. anySatisfy(CharPredicate predicate)booleanImmutableShortCharHashMap. anySatisfy(CharPredicate predicate)booleanImmutableShortCharSingletonMap. anySatisfy(CharPredicate predicate)intImmutableByteCharEmptyMap. count(CharPredicate predicate)intImmutableByteCharHashMap. count(CharPredicate predicate)intImmutableByteCharSingletonMap. count(CharPredicate predicate)intImmutableCharCharEmptyMap. count(CharPredicate predicate)intImmutableCharCharHashMap. count(CharPredicate predicate)intImmutableCharCharSingletonMap. count(CharPredicate predicate)intImmutableDoubleCharEmptyMap. count(CharPredicate predicate)intImmutableDoubleCharHashMap. count(CharPredicate predicate)intImmutableDoubleCharSingletonMap. count(CharPredicate predicate)intImmutableFloatCharEmptyMap. count(CharPredicate predicate)intImmutableFloatCharHashMap. count(CharPredicate predicate)intImmutableFloatCharSingletonMap. count(CharPredicate predicate)intImmutableIntCharEmptyMap. count(CharPredicate predicate)intImmutableIntCharHashMap. count(CharPredicate predicate)intImmutableIntCharSingletonMap. count(CharPredicate predicate)intImmutableLongCharEmptyMap. count(CharPredicate predicate)intImmutableLongCharHashMap. count(CharPredicate predicate)intImmutableLongCharSingletonMap. count(CharPredicate predicate)intImmutableObjectCharEmptyMap. count(CharPredicate predicate)intImmutableObjectCharHashMap. count(CharPredicate predicate)intImmutableObjectCharSingletonMap. count(CharPredicate predicate)intImmutableShortCharEmptyMap. count(CharPredicate predicate)intImmutableShortCharHashMap. count(CharPredicate predicate)intImmutableShortCharSingletonMap. count(CharPredicate predicate)charImmutableByteCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableByteCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableByteCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableDoubleCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableDoubleCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableDoubleCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableFloatCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableFloatCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableFloatCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableIntCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableIntCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableIntCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableLongCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableLongCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableLongCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableObjectCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableObjectCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableObjectCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableShortCharEmptyMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableShortCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charImmutableShortCharSingletonMap. detectIfNone(CharPredicate predicate, char ifNone)booleanImmutableByteCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableByteCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableByteCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableCharCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableCharCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableCharCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableDoubleCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableDoubleCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableDoubleCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableFloatCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableFloatCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableFloatCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableIntCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableIntCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableIntCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableLongCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableLongCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableLongCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableObjectCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableObjectCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableObjectCharSingletonMap. noneSatisfy(CharPredicate predicate)booleanImmutableShortCharEmptyMap. noneSatisfy(CharPredicate predicate)booleanImmutableShortCharHashMap. noneSatisfy(CharPredicate predicate)booleanImmutableShortCharSingletonMap. noneSatisfy(CharPredicate predicate)ImmutableCharBagImmutableByteCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableByteCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableByteCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableCharCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableCharCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableCharCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableFloatCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableFloatCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableFloatCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableIntCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableIntCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableIntCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableLongCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableLongCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableLongCharSingletonMap. reject(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharEmptyMap. reject(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharHashMap. reject(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableShortCharEmptyMap. reject(CharPredicate predicate)ImmutableCharBagImmutableShortCharHashMap. reject(CharPredicate predicate)ImmutableCharBagImmutableShortCharSingletonMap. reject(CharPredicate predicate)ImmutableCharBagImmutableByteCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableByteCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableByteCharSingletonMap. select(CharPredicate predicate)ImmutableCharBagImmutableCharCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableCharCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableCharCharSingletonMap. select(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableDoubleCharSingletonMap. select(CharPredicate predicate)ImmutableCharBagImmutableFloatCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableFloatCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableFloatCharSingletonMap. select(CharPredicate predicate)ImmutableCharBagImmutableIntCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableIntCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableIntCharSingletonMap. select(CharPredicate predicate)ImmutableCharBagImmutableLongCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableLongCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableLongCharSingletonMap. select(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharEmptyMap. select(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharHashMap. select(CharPredicate predicate)ImmutableCharCollectionImmutableObjectCharSingletonMap. select(CharPredicate predicate)ImmutableCharBagImmutableShortCharEmptyMap. select(CharPredicate predicate)ImmutableCharBagImmutableShortCharHashMap. select(CharPredicate predicate)ImmutableCharBagImmutableShortCharSingletonMap. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanAbstractMutableCharKeySet. allSatisfy(CharPredicate predicate)booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection. allSatisfy(CharPredicate predicate)booleanAbstractMutableCharValuesMap. allSatisfy(CharPredicate predicate)booleanCharBooleanHashMap.KeysView. allSatisfy(CharPredicate predicate)booleanImmutableCharCharMapKeySet. allSatisfy(CharPredicate predicate)booleanImmutableCharMapKeySet. allSatisfy(CharPredicate predicate)booleanObjectCharHashMap. allSatisfy(CharPredicate predicate)booleanObjectCharHashMap.ValuesCollection. allSatisfy(CharPredicate predicate)booleanObjectCharHashMapWithHashingStrategy. allSatisfy(CharPredicate predicate)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. allSatisfy(CharPredicate predicate)booleanSynchronizedByteCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedCharCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedDoubleCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedFloatCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedIntCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedLongCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedObjectCharMap. allSatisfy(CharPredicate predicate)booleanSynchronizedShortCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableByteCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableCharCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableDoubleCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableFloatCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableIntCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableLongCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableObjectCharMap. allSatisfy(CharPredicate predicate)booleanUnmodifiableShortCharMap. allSatisfy(CharPredicate predicate)booleanAbstractMutableCharKeySet. anySatisfy(CharPredicate predicate)booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection. anySatisfy(CharPredicate predicate)booleanAbstractMutableCharValuesMap. anySatisfy(CharPredicate predicate)booleanCharBooleanHashMap.KeysView. anySatisfy(CharPredicate predicate)booleanImmutableCharCharMapKeySet. anySatisfy(CharPredicate predicate)booleanImmutableCharMapKeySet. anySatisfy(CharPredicate predicate)booleanObjectCharHashMap. anySatisfy(CharPredicate predicate)booleanObjectCharHashMap.ValuesCollection. anySatisfy(CharPredicate predicate)booleanObjectCharHashMapWithHashingStrategy. anySatisfy(CharPredicate predicate)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. anySatisfy(CharPredicate predicate)booleanSynchronizedByteCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedCharCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedDoubleCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedFloatCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedIntCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedLongCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedObjectCharMap. anySatisfy(CharPredicate predicate)booleanSynchronizedShortCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableByteCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableCharCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableDoubleCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableFloatCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableIntCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableLongCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableObjectCharMap. anySatisfy(CharPredicate predicate)booleanUnmodifiableShortCharMap. anySatisfy(CharPredicate predicate)intAbstractMutableCharKeySet. count(CharPredicate predicate)intAbstractMutableCharValuesMap.AbstractCharValuesCollection. count(CharPredicate predicate)intAbstractMutableCharValuesMap. count(CharPredicate predicate)intCharBooleanHashMap.KeysView. count(CharPredicate predicate)intImmutableCharCharMapKeySet. count(CharPredicate predicate)intImmutableCharMapKeySet. count(CharPredicate predicate)intObjectCharHashMap. count(CharPredicate predicate)intObjectCharHashMap.ValuesCollection. count(CharPredicate predicate)intObjectCharHashMapWithHashingStrategy. count(CharPredicate predicate)intObjectCharHashMapWithHashingStrategy.ValuesCollection. count(CharPredicate predicate)intSynchronizedByteCharMap. count(CharPredicate predicate)intSynchronizedCharCharMap. count(CharPredicate predicate)intSynchronizedDoubleCharMap. count(CharPredicate predicate)intSynchronizedFloatCharMap. count(CharPredicate predicate)intSynchronizedIntCharMap. count(CharPredicate predicate)intSynchronizedLongCharMap. count(CharPredicate predicate)intSynchronizedObjectCharMap. count(CharPredicate predicate)intSynchronizedShortCharMap. count(CharPredicate predicate)intUnmodifiableByteCharMap. count(CharPredicate predicate)intUnmodifiableCharCharMap. count(CharPredicate predicate)intUnmodifiableDoubleCharMap. count(CharPredicate predicate)intUnmodifiableFloatCharMap. count(CharPredicate predicate)intUnmodifiableIntCharMap. count(CharPredicate predicate)intUnmodifiableLongCharMap. count(CharPredicate predicate)intUnmodifiableObjectCharMap. count(CharPredicate predicate)intUnmodifiableShortCharMap. count(CharPredicate predicate)charAbstractMutableCharKeySet. detectIfNone(CharPredicate predicate, char ifNone)charAbstractMutableCharValuesMap.AbstractCharValuesCollection. detectIfNone(CharPredicate predicate, char ifNone)charAbstractMutableCharValuesMap. detectIfNone(CharPredicate predicate, char value)charCharBooleanHashMap.KeysView. detectIfNone(CharPredicate predicate, char value)charImmutableCharCharMapKeySet. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharMapKeySet. detectIfNone(CharPredicate predicate, char ifNone)charObjectCharHashMap. detectIfNone(CharPredicate predicate, char ifNone)charObjectCharHashMap.ValuesCollection. detectIfNone(CharPredicate predicate, char ifNone)charObjectCharHashMapWithHashingStrategy. detectIfNone(CharPredicate predicate, char ifNone)charObjectCharHashMapWithHashingStrategy.ValuesCollection. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedByteCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedCharCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedDoubleCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedFloatCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedIntCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedLongCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedObjectCharMap. detectIfNone(CharPredicate predicate, char ifNone)charSynchronizedShortCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableByteCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableCharCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableDoubleCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableFloatCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableIntCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableLongCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableObjectCharMap. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableShortCharMap. detectIfNone(CharPredicate predicate, char ifNone)booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection. noneSatisfy(CharPredicate predicate)booleanImmutableCharCharMapKeySet. noneSatisfy(CharPredicate predicate)booleanImmutableCharMapKeySet. noneSatisfy(CharPredicate predicate)booleanObjectCharHashMap. noneSatisfy(CharPredicate predicate)booleanObjectCharHashMap.ValuesCollection. noneSatisfy(CharPredicate predicate)booleanObjectCharHashMapWithHashingStrategy. noneSatisfy(CharPredicate predicate)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. noneSatisfy(CharPredicate predicate)booleanSynchronizedByteCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedCharCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedDoubleCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedFloatCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedIntCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedLongCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedObjectCharMap. noneSatisfy(CharPredicate predicate)booleanSynchronizedShortCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableByteCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableCharCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableDoubleCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableFloatCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableIntCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableLongCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableObjectCharMap. noneSatisfy(CharPredicate predicate)booleanUnmodifiableShortCharMap. noneSatisfy(CharPredicate predicate)MutableCharSetAbstractMutableCharKeySet. reject(CharPredicate predicate)MutableCharCollectionAbstractMutableCharValuesMap.AbstractCharValuesCollection. reject(CharPredicate predicate)MutableCharBagAbstractMutableCharValuesMap. reject(CharPredicate predicate)ImmutableCharSetImmutableCharCharMapKeySet. reject(CharPredicate predicate)ImmutableCharSetImmutableCharMapKeySet. reject(CharPredicate predicate)MutableCharCollectionObjectCharHashMap. reject(CharPredicate predicate)MutableCharCollectionObjectCharHashMap.ValuesCollection. reject(CharPredicate predicate)MutableCharCollectionObjectCharHashMapWithHashingStrategy. reject(CharPredicate predicate)MutableCharCollectionObjectCharHashMapWithHashingStrategy.ValuesCollection. reject(CharPredicate predicate)MutableCharBagSynchronizedByteCharMap. reject(CharPredicate predicate)MutableCharBagSynchronizedCharCharMap. reject(CharPredicate predicate)MutableCharBagSynchronizedDoubleCharMap. reject(CharPredicate predicate)MutableCharBagSynchronizedFloatCharMap. reject(CharPredicate predicate)MutableCharBagSynchronizedIntCharMap. reject(CharPredicate predicate)MutableCharBagSynchronizedLongCharMap. reject(CharPredicate predicate)MutableCharCollectionSynchronizedObjectCharMap. reject(CharPredicate predicate)MutableCharBagSynchronizedShortCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableByteCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableCharCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableDoubleCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableFloatCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableIntCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableLongCharMap. reject(CharPredicate predicate)MutableCharCollectionUnmodifiableObjectCharMap. reject(CharPredicate predicate)MutableCharBagUnmodifiableShortCharMap. reject(CharPredicate predicate)MutableCharSetAbstractMutableCharKeySet. select(CharPredicate predicate)MutableCharCollectionAbstractMutableCharValuesMap.AbstractCharValuesCollection. select(CharPredicate predicate)MutableCharBagAbstractMutableCharValuesMap. select(CharPredicate predicate)ImmutableCharSetImmutableCharCharMapKeySet. select(CharPredicate predicate)ImmutableCharSetImmutableCharMapKeySet. select(CharPredicate predicate)MutableCharCollectionObjectCharHashMap. select(CharPredicate predicate)MutableCharCollectionObjectCharHashMap.ValuesCollection. select(CharPredicate predicate)MutableCharCollectionObjectCharHashMapWithHashingStrategy. select(CharPredicate predicate)MutableCharCollectionObjectCharHashMapWithHashingStrategy.ValuesCollection. select(CharPredicate predicate)MutableCharBagSynchronizedByteCharMap. select(CharPredicate predicate)MutableCharBagSynchronizedCharCharMap. select(CharPredicate predicate)MutableCharBagSynchronizedDoubleCharMap. select(CharPredicate predicate)MutableCharBagSynchronizedFloatCharMap. select(CharPredicate predicate)MutableCharBagSynchronizedIntCharMap. select(CharPredicate predicate)MutableCharBagSynchronizedLongCharMap. select(CharPredicate predicate)MutableCharCollectionSynchronizedObjectCharMap. select(CharPredicate predicate)MutableCharBagSynchronizedShortCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableByteCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableCharCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableDoubleCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableFloatCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableIntCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableLongCharMap. select(CharPredicate predicate)MutableCharCollectionUnmodifiableObjectCharMap. select(CharPredicate predicate)MutableCharBagUnmodifiableShortCharMap. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanSynchronizedCharIterable. allSatisfy(CharPredicate predicate)booleanSynchronizedCharIterable. anySatisfy(CharPredicate predicate)intSynchronizedCharIterable. count(CharPredicate predicate)charSynchronizedCharIterable. detectIfNone(CharPredicate predicate, char ifNone)booleanSynchronizedCharIterable. noneSatisfy(CharPredicate predicate)CharIterableSynchronizedCharIterable. reject(CharPredicate predicate)CharIterableSynchronizedCharIterable. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanImmutableCharEmptySet. allSatisfy(CharPredicate predicate)booleanImmutableCharSingletonSet. allSatisfy(CharPredicate predicate)booleanImmutableCharEmptySet. anySatisfy(CharPredicate predicate)booleanImmutableCharSingletonSet. anySatisfy(CharPredicate predicate)intImmutableCharEmptySet. count(CharPredicate predicate)intImmutableCharSingletonSet. count(CharPredicate predicate)charImmutableCharEmptySet. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharSingletonSet. detectIfNone(CharPredicate predicate, char ifNone)booleanImmutableCharEmptySet. noneSatisfy(CharPredicate predicate)booleanImmutableCharSingletonSet. noneSatisfy(CharPredicate predicate)ImmutableCharSetImmutableCharEmptySet. reject(CharPredicate predicate)ImmutableCharSetImmutableCharSingletonSet. reject(CharPredicate predicate)ImmutableCharSetImmutableCharEmptySet. select(CharPredicate predicate)ImmutableCharSetImmutableCharSingletonSet. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanCharHashSet. allSatisfy(CharPredicate predicate)booleanCharHashSet.ImmutableCharHashSet. allSatisfy(CharPredicate predicate)booleanCharHashSet. anySatisfy(CharPredicate predicate)booleanCharHashSet.ImmutableCharHashSet. anySatisfy(CharPredicate predicate)intCharHashSet. count(CharPredicate predicate)intCharHashSet.ImmutableCharHashSet. count(CharPredicate predicate)charCharHashSet. detectIfNone(CharPredicate predicate, char ifNone)charCharHashSet.ImmutableCharHashSet. detectIfNone(CharPredicate predicate, char ifNone)booleanCharHashSet.ImmutableCharHashSet. noneSatisfy(CharPredicate predicate)ImmutableCharSetCharHashSet.ImmutableCharHashSet. reject(CharPredicate predicate)CharHashSetCharHashSet. reject(CharPredicate predicate)<R extends MutableCharCollection>
RCharHashSet. reject(CharPredicate predicate, R target)MutableCharSetSynchronizedCharSet. reject(CharPredicate predicate)MutableCharSetUnmodifiableCharSet. reject(CharPredicate predicate)ImmutableCharSetCharHashSet.ImmutableCharHashSet. select(CharPredicate predicate)CharHashSetCharHashSet. select(CharPredicate predicate)<R extends MutableCharCollection>
RCharHashSet. select(CharPredicate predicate, R target)MutableCharSetSynchronizedCharSet. select(CharPredicate predicate)MutableCharSetUnmodifiableCharSet. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanImmutableCharEmptyStack. allSatisfy(CharPredicate predicate)booleanImmutableCharSingletonStack. allSatisfy(CharPredicate predicate)booleanImmutableCharEmptyStack. anySatisfy(CharPredicate predicate)booleanImmutableCharSingletonStack. anySatisfy(CharPredicate predicate)intImmutableCharEmptyStack. count(CharPredicate predicate)intImmutableCharSingletonStack. count(CharPredicate predicate)charImmutableCharEmptyStack. detectIfNone(CharPredicate predicate, char ifNone)charImmutableCharSingletonStack. detectIfNone(CharPredicate predicate, char ifNone)booleanImmutableCharEmptyStack. noneSatisfy(CharPredicate predicate)booleanImmutableCharSingletonStack. noneSatisfy(CharPredicate predicate)ImmutableCharStackImmutableCharArrayStack. reject(CharPredicate predicate)ImmutableCharStackImmutableCharEmptyStack. reject(CharPredicate predicate)ImmutableCharStackImmutableCharSingletonStack. reject(CharPredicate predicate)ImmutableCharStackImmutableCharArrayStack. select(CharPredicate predicate)ImmutableCharStackImmutableCharEmptyStack. select(CharPredicate predicate)ImmutableCharStackImmutableCharSingletonStack. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanSynchronizedCharStack. allSatisfy(CharPredicate predicate)booleanUnmodifiableCharStack. allSatisfy(CharPredicate predicate)booleanSynchronizedCharStack. anySatisfy(CharPredicate predicate)booleanUnmodifiableCharStack. anySatisfy(CharPredicate predicate)intSynchronizedCharStack. count(CharPredicate predicate)intUnmodifiableCharStack. count(CharPredicate predicate)charSynchronizedCharStack. detectIfNone(CharPredicate predicate, char ifNone)charUnmodifiableCharStack. detectIfNone(CharPredicate predicate, char ifNone)booleanSynchronizedCharStack. noneSatisfy(CharPredicate predicate)booleanUnmodifiableCharStack. noneSatisfy(CharPredicate predicate)MutableCharStackCharArrayStack. reject(CharPredicate predicate)MutableCharStackSynchronizedCharStack. reject(CharPredicate predicate)MutableCharStackUnmodifiableCharStack. reject(CharPredicate predicate)MutableCharStackCharArrayStack. select(CharPredicate predicate)MutableCharStackSynchronizedCharStack. select(CharPredicate predicate)MutableCharStackUnmodifiableCharStack. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type CharPredicate Modifier and Type Method Description booleanAbstractCharStack. allSatisfy(CharPredicate predicate)booleanAbstractCharStack. anySatisfy(CharPredicate predicate)intAbstractCharStack. count(CharPredicate predicate)charAbstractCharStack. detectIfNone(CharPredicate predicate, char ifNone)booleanAbstractCharStack. noneSatisfy(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type CharPredicate Modifier and Type Method Description booleanCharAdapter. allSatisfy(CharPredicate predicate)booleanCharAdapter. anySatisfy(CharPredicate predicate)intCharAdapter. count(CharPredicate predicate)charCharAdapter. detectIfNone(CharPredicate predicate, char ifNone)booleanCharAdapter. noneSatisfy(CharPredicate predicate)CharAdapterCharAdapter. reject(CharPredicate predicate)CharAdapterCharAdapter. select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type CharPredicate Modifier and Type Method Description static booleanStringIterate. allSatisfy(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static booleanStringIterate. allSatisfyChar(java.lang.String string, CharPredicate predicate)static booleanStringIterate. anySatisfy(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static booleanStringIterate. anySatisfyChar(java.lang.String string, CharPredicate predicate)static intStringIterate. count(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static intStringIterate. countChar(java.lang.String string, CharPredicate predicate)Count the number of elements that return true for the specifiedpredicate.static java.lang.CharacterStringIterate. detect(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static java.lang.CharacterStringIterate. detectChar(java.lang.String string, CharPredicate predicate)Find the first element that returns true for the specifiedpredicate.static java.lang.CharacterStringIterate. detectCharIfNone(java.lang.String string, CharPredicate predicate, char resultIfNone)Find the first element that returns true for the specifiedpredicate.static java.lang.CharacterStringIterate. detectCharIfNone(java.lang.String string, CharPredicate predicate, java.lang.String resultIfNone)Find the first element that returns true for the specifiedpredicate.static java.lang.CharacterStringIterate. detectIfNone(java.lang.String string, CharPredicate predicate, char resultIfNone)Deprecated.since 7.0.static java.lang.CharacterStringIterate. detectIfNone(java.lang.String string, CharPredicate predicate, java.lang.String resultIfNone)Deprecated.since 7.0.static booleanStringIterate. noneSatisfy(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static booleanStringIterate. noneSatisfyChar(java.lang.String string, CharPredicate predicate)static java.lang.StringStringIterate. reject(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static java.lang.StringStringIterate. rejectChar(java.lang.String string, CharPredicate predicate)static java.lang.StringStringIterate. select(java.lang.String string, CharPredicate predicate)Deprecated.since 7.0.static java.lang.StringStringIterate. selectChar(java.lang.String string, CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type CharPredicate Modifier and Type Method Description static booleanCharIterableIterate. allSatisfy(CharIterable iterable, CharPredicate predicate)static booleanCharIteratorIterate. allSatisfy(CharIterator iterator, CharPredicate predicate)static booleanCharIterableIterate. anySatisfy(CharIterable iterable, CharPredicate predicate)static booleanCharIteratorIterate. anySatisfy(CharIterator iterator, CharPredicate predicate)static intCharIterableIterate. count(CharIterable iterable, CharPredicate predicate)static intCharIteratorIterate. count(CharIterator iterator, CharPredicate predicate)static charCharIterableIterate. detectIfNone(CharIterable iterable, CharPredicate predicate, char ifNone)static charCharIteratorIterate. detectIfNone(CharIterator iterator, CharPredicate predicate, char ifNone)static booleanCharIterableIterate. noneSatisfy(CharIterable iterable, CharPredicate predicate)static booleanCharIteratorIterate. noneSatisfy(CharIterator iterator, CharPredicate predicate)static <R extends MutableCharCollection>
RCharIterableIterate. reject(CharIterable iterable, CharPredicate predicate, R targetCollection)static <R extends MutableCharCollection>
RCharIteratorIterate. reject(CharIterator iterator, CharPredicate predicate, R targetCollection)static <R extends MutableCharCollection>
RCharIterableIterate. select(CharIterable iterable, CharPredicate predicate, R targetCollection)static <R extends MutableCharCollection>
RCharIteratorIterate. select(CharIterator iterator, CharPredicate predicate, R targetCollection) -
Uses of CharPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type CharPredicate Modifier and Type Method Description static <V> LazyIterable<V>LazyCharIterate. collectIf(CharIterable iterable, CharPredicate predicate, CharToObjectFunction<? extends V> function)Creates a deferred filtering and transforming char iterable for the specified char iterable.static LazyCharIterableLazyCharIterate. select(CharIterable iterable, CharPredicate predicate)Creates a deferred filtering char iterable for the specified char iterable.
-