Uses of Interface
org.eclipse.collections.api.CharIterable
-
Packages that use CharIterable 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.factory.bag.primitive org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.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 This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag 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.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.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 This package contains implementations of theMutableListinterface.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 This package contains implementations of theMutableMapinterface.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.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.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.set.primitive org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.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.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of CharIterable in org.eclipse.collections.api
Subinterfaces of CharIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyCharIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return CharIterable Modifier and Type Method Description CharIterableRichIterable. collectChar(CharFunction<? super T> charFunction)Returns a new primitivechariterable with the results of applying the specified function on each element of the source collection.CharIterableCharIterable. reject(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified 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 CharIterableCharIterable. tap(CharProcedure procedure)Methods in org.eclipse.collections.api that return types with arguments of type CharIterable Modifier and Type Method Description default RichIterable<CharIterable>CharIterable. chunk(int size)Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type CharIterable Modifier and Type Method Description default booleanCharIterable. containsAll(CharIterable source)Returns true if all of the values specified in the source CharIterable are contained in the CharIterable, and false if they are not.default booleanCharIterable. containsAny(CharIterable source)Returns true if any of the values specified in the source CharIterable are contained in the CharIterable, and false if they are not.default booleanCharIterable. containsNone(CharIterable source)Returns true if none of the values specified in the source CharIterable are contained in the CharIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type CharIterable Modifier and Type Method Description default <R extends MutableCharCollection>
RRichIterable. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)Same as flatCollect, only the results are collected into the target collection. -
Uses of CharIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceCharBagThis file was automatically generated from template file primitiveBag.stg.interfaceImmutableCharBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceMutableCharBagThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharBagImmutableCharBag. newWithAll(CharIterable elements)ImmutableCharBagImmutableCharBag. newWithoutAll(CharIterable elements)MutableCharBagMutableCharBag. withAll(CharIterable elements)MutableCharBagMutableCharBag. withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interfaceImmutableCharCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableCharCollectionThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type CharIterable Modifier and Type Method Description booleanMutableCharCollection. addAll(CharIterable source)ImmutableCharCollectionImmutableCharCollection. newWithAll(CharIterable elements)ImmutableCharCollectionImmutableCharCollection. newWithoutAll(CharIterable elements)booleanMutableCharCollection. removeAll(CharIterable source)booleanMutableCharCollection. retainAll(CharIterable elements)MutableCharCollectionMutableCharCollection. withAll(CharIterable elements)MutableCharCollectionMutableCharCollection. withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharBagImmutableCharBagFactory. ofAll(CharIterable items)MutableCharBagMutableCharBagFactory. ofAll(CharIterable items)ImmutableCharBagImmutableCharBagFactory. withAll(CharIterable items)MutableCharBagMutableCharBagFactory. withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharListImmutableCharListFactory. ofAll(CharIterable items)MutableCharListMutableCharListFactory. ofAll(CharIterable items)ImmutableCharListImmutableCharListFactory. withAll(CharIterable items)MutableCharListMutableCharListFactory. withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharSetImmutableCharSetFactory. ofAll(CharIterable items)MutableCharSetMutableCharSetFactory. ofAll(CharIterable items)ImmutableCharSetImmutableCharSetFactory. withAll(CharIterable items)MutableCharSetMutableCharSetFactory. withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharStackImmutableCharStackFactory. ofAll(CharIterable items)MutableCharStackMutableCharStackFactory. ofAll(CharIterable items)ImmutableCharStackImmutableCharStackFactory. ofAllReversed(CharIterable items)MutableCharStackMutableCharStackFactory. ofAllReversed(CharIterable items)ImmutableCharStackImmutableCharStackFactory. withAll(CharIterable items)MutableCharStackMutableCharStackFactory. withAll(CharIterable items)ImmutableCharStackImmutableCharStackFactory. withAllReversed(CharIterable items)MutableCharStackMutableCharStackFactory. withAllReversed(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceCharListThis file was automatically generated from template file primitiveList.stg.interfaceImmutableCharListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceMutableCharListThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type CharIterable Modifier and Type Method Description booleanMutableCharList. addAllAtIndex(int index, CharIterable source)ImmutableCharListImmutableCharList. newWithAll(CharIterable elements)ImmutableCharListImmutableCharList. newWithoutAll(CharIterable elements)MutableCharListMutableCharList. withAll(CharIterable elements)MutableCharListMutableCharList. withoutAll(CharIterable elements)default ListIterable<CharCharPair>CharList. zipChar(CharIterable iterable)Returns aListIterableformed from thisCharListand anotherCharListby combining corresponding elements in pairs.default ImmutableList<CharCharPair>ImmutableCharList. zipChar(CharIterable iterable)Returns anImmutableListformed from thisImmutableCharListand anotherCharListby combining corresponding elements in pairs.default MutableList<CharCharPair>MutableCharList. zipChar(CharIterable iterable)Returns aMutableListformed from thisMutableCharListand anotherCharListby combining corresponding elements in pairs. -
Uses of CharIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interfaceByteCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.interfaceDoubleCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceFloatCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectCharMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortCharMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceMutableByteCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceMutableDoubleCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableFloatCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableObjectCharMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortCharMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectCharMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortCharMapThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharBooleanMapImmutableCharBooleanMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharByteMapImmutableCharByteMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharCharMapImmutableCharCharMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharDoubleMapImmutableCharDoubleMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharFloatMapImmutableCharFloatMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharIntMapImmutableCharIntMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharLongMapImmutableCharLongMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharObjectMap<V>ImmutableCharObjectMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharShortMapImmutableCharShortMap. newWithoutAllKeys(CharIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableCharBooleanMapMutableCharBooleanMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharByteMapMutableCharByteMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharCharMapMutableCharCharMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharDoubleMapMutableCharDoubleMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharFloatMapMutableCharFloatMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharIntMapMutableCharIntMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharLongMapMutableCharLongMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharObjectMap<V>MutableCharObjectMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharShortMapMutableCharShortMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of CharIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.ordered.primitive Modifier and Type Interface Description interfaceOrderedCharIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleCharIterableThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of CharIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interfaceCharSetThis file was automatically generated from template file primitiveSet.stg.interfaceImmutableCharSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceMutableCharSetThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type CharIterable Modifier and Type Method Description ImmutableCharSetImmutableCharSet. newWithAll(CharIterable elements)ImmutableCharSetImmutableCharSet. newWithoutAll(CharIterable elements)MutableCharSetMutableCharSet. withAll(CharIterable elements)MutableCharSetMutableCharSet. withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of CharIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interfaceCharStackThis file was automatically generated from template file primitiveStack.stg.interfaceImmutableCharStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceMutableCharStackThis file was automatically generated from template file mutablePrimitiveStack.stg. -
Uses of CharIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return CharIterable Modifier and Type Method Description CharIterableUnmodifiableRichIterable. collectChar(CharFunction<? super T> charFunction)Method parameters in org.eclipse.collections.impl with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RUnmodifiableRichIterable. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RAbstractBag. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement CharIterable Modifier and Type Class Description (package private) classImmutableCharEmptyBagImmutableCharEmptyBag is an optimization forImmutableCharBagof size 0.(package private) classImmutableCharHashBagImmutableCharHashBag is the non-modifiable equivalent ofCharHashBag.(package private) classImmutableCharSingletonBagImmutableCharSingletonBag is an optimization forImmutableCharBagof size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>ImmutableCharEmptyBag. chunk(int size)RichIterable<CharIterable>ImmutableCharHashBag. chunk(int size)RichIterable<CharIterable>ImmutableCharSingletonBag. chunk(int size)Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanImmutableCharEmptyBag. containsAll(CharIterable source)booleanImmutableCharHashBag. containsAll(CharIterable source)booleanImmutableCharSingletonBag. containsAll(CharIterable source)ImmutableCharBagImmutableCharEmptyBag. newWithAll(CharIterable elements)ImmutableCharBagImmutableCharHashBag. newWithAll(CharIterable elements)ImmutableCharBagImmutableCharSingletonBag. newWithAll(CharIterable elements)ImmutableCharBagImmutableCharEmptyBag. newWithoutAll(CharIterable elements)ImmutableCharBagImmutableCharHashBag. newWithoutAll(CharIterable elements)ImmutableCharBagImmutableCharSingletonBag. newWithoutAll(CharIterable elements)ImmutableCharBagImmutableCharBagFactoryImpl. ofAll(CharIterable items)ImmutableCharBagImmutableCharBagFactoryImpl. withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement CharIterable Modifier and Type Class Description classCharHashBagCharHashBag is similar toHashBag, and is memory-optimized for char primitives.classSynchronizedCharBagA synchronized view of aMutableCharBag.classUnmodifiableCharBagThis file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>CharHashBag. chunk(int size)Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanCharHashBag. addAll(CharIterable source)static CharHashBagCharHashBag. newBag(CharIterable source)MutableCharBagMutableCharBagFactoryImpl. ofAll(CharIterable items)booleanCharHashBag. removeAll(CharIterable source)booleanCharHashBag. retainAll(CharIterable source)CharHashBagCharHashBag. withAll(CharIterable iterable)MutableCharBagMutableCharBagFactoryImpl. withAll(CharIterable items)SynchronizedCharBagSynchronizedCharBag. withAll(CharIterable elements)UnmodifiableCharBagUnmodifiableCharBag. withAll(CharIterable elements)CharHashBagCharHashBag. withoutAll(CharIterable iterable)SynchronizedCharBagSynchronizedCharBag. withoutAll(CharIterable elements)UnmodifiableCharBagUnmodifiableCharBag. withoutAll(CharIterable elements)Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type CharIterable Constructor Description CharHashBag(CharIterable iterable) -
Uses of CharIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RAbstractBiMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return CharIterable Modifier and Type Method Description CharIterableUnmodifiableBiMap. collectChar(CharFunction<? super V> charFunction)Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RUnmodifiableBiMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return CharIterable Modifier and Type Method Description CharIterableAbstractSynchronizedRichIterable. collectChar(CharFunction<? super T> charFunction)Method parameters in org.eclipse.collections.impl.collection with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RAbstractSynchronizedRichIterable. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RAbstractUnmodifiableMutableCollection. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement CharIterable Modifier and Type Class Description classAbstractSynchronizedCharCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableCharCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedCharCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableCharCollectionThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>AbstractSynchronizedCharCollection. chunk(int size)RichIterable<CharIterable>AbstractUnmodifiableCharCollection. chunk(int size)Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanAbstractSynchronizedCharCollection. addAll(CharIterable source)booleanAbstractUnmodifiableCharCollection. addAll(CharIterable source)booleanAbstractSynchronizedCharCollection. containsAll(CharIterable source)booleanAbstractUnmodifiableCharCollection. containsAll(CharIterable source)booleanAbstractSynchronizedCharCollection. containsAny(CharIterable source)booleanAbstractUnmodifiableCharCollection. containsAny(CharIterable source)booleanAbstractSynchronizedCharCollection. containsNone(CharIterable source)booleanAbstractUnmodifiableCharCollection. containsNone(CharIterable source)booleanAbstractSynchronizedCharCollection. removeAll(CharIterable source)booleanAbstractUnmodifiableCharCollection. removeAll(CharIterable source)booleanAbstractSynchronizedCharCollection. retainAll(CharIterable source)booleanAbstractUnmodifiableCharCollection. retainAll(CharIterable source)MutableCharCollectionAbstractSynchronizedCharCollection. withAll(CharIterable elements)MutableCharCollectionAbstractUnmodifiableCharCollection. withAll(CharIterable elements)MutableCharCollectionAbstractSynchronizedCharCollection. withoutAll(CharIterable elements)MutableCharCollectionAbstractUnmodifiableCharCollection. withoutAll(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement CharIterable Modifier and Type Class Description classAbstractLazyCharIterableThis file was automatically generated from template file abstractLazyPrimitiveIterable.stg.classCollectBooleanToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectByteToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectCharIterable<T>This file was automatically generated from template file collectPrimitiveIterable.stg.classCollectCharToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectDoubleToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectFloatToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectIntToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectLongToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectShortToCharIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classLazyCharIterableAdapterThis file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.classReverseCharIterableThis file was automatically generated from template file reversePrimitiveIterable.stg.classSelectCharIterableThis file was automatically generated from template file selectPrimitiveIterable.stg.classTapCharIterableThis file was automatically generated from template file tapPrimitiveIterable.stg.Fields in org.eclipse.collections.impl.lazy.primitive declared as CharIterable Modifier and Type Field Description private CharIterableChunkCharIterable. adaptedprivate CharIterableTapCharIterable. adaptedprivate CharIterableLazyCharIterableAdapter. delegateprivate CharIterableSelectCharIterable. delegateprivate CharIterableCollectCharToBooleanIterable. iterableprivate CharIterableCollectCharToByteIterable. iterableprivate CharIterableCollectCharToCharIterable. iterableprivate CharIterableCollectCharToDoubleIterable. iterableprivate CharIterableCollectCharToFloatIterable. iterableprivate CharIterableCollectCharToIntIterable. iterableprivate CharIterableCollectCharToLongIterable. iterableprivate CharIterableCollectCharToObjectIterable. iterableprivate CharIterableCollectCharToShortIterable. iterableprivate CharIterableFlatCollectCharToObjectIterable. iterableMethods in org.eclipse.collections.impl.lazy.primitive that return CharIterable Modifier and Type Method Description CharIterableChunkCharIterable.ChunkCharIterator. next()Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>AbstractLazyCharIterable. chunk(int size)java.util.Iterator<CharIterable>ChunkCharIterable. iterator()Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type CharIterable Modifier and Type Method Description booleanAbstractLazyCharIterable. containsAll(CharIterable source)booleanCollectCharIterable. containsAll(CharIterable source)booleanLazyCharIterableAdapter. containsAll(CharIterable source)booleanReverseCharIterable. containsAll(CharIterable source)booleanSelectCharIterable. containsAll(CharIterable source)Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type CharIterable Modifier and Type Method Description voidChunkCharIterable. each(Procedure<? super CharIterable> procedure) -
Uses of CharIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement CharIterable Modifier and Type Class Description (package private) classImmutableCharArrayListImmutableCharArrayList is the non-modifiable equivalent ofCharArrayList.(package private) classImmutableCharEmptyListImmutableCharEmptyList is an optimization forImmutableCharListof size 0.(package private) classImmutableCharSingletonListImmutableCharSingletonList is an optimization forImmutableCharListof size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>ImmutableCharArrayList. chunk(int size)RichIterable<CharIterable>ImmutableCharEmptyList. chunk(int size)RichIterable<CharIterable>ImmutableCharSingletonList. chunk(int size)Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanImmutableCharArrayList. containsAll(CharIterable source)booleanImmutableCharEmptyList. containsAll(CharIterable source)booleanImmutableCharSingletonList. containsAll(CharIterable source)static ImmutableCharArrayListImmutableCharArrayList. newList(CharIterable iterable)ImmutableCharListImmutableCharArrayList. newWithAll(CharIterable elements)ImmutableCharListImmutableCharEmptyList. newWithAll(CharIterable elements)ImmutableCharListImmutableCharSingletonList. newWithAll(CharIterable elements)ImmutableCharListImmutableCharArrayList. newWithoutAll(CharIterable elements)ImmutableCharListImmutableCharEmptyList. newWithoutAll(CharIterable elements)ImmutableCharListImmutableCharSingletonList. newWithoutAll(CharIterable elements)ImmutableCharListImmutableCharListFactoryImpl. ofAll(CharIterable items)ImmutableCharListImmutableCharListFactoryImpl. withAll(CharIterable items)ImmutableList<CharCharPair>ImmutableCharArrayList. zipChar(CharIterable iterable)ImmutableList<CharCharPair>ImmutableCharEmptyList. zipChar(CharIterable iterable)ImmutableList<CharCharPair>ImmutableCharSingletonList. zipChar(CharIterable iterable) -
Uses of CharIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RFastList. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement CharIterable Modifier and Type Class Description classCharArrayListCharArrayList is similar to FastList, and is memory-optimized for char primitives.classSynchronizedCharListA synchronized view of aMutableCharList.classUnmodifiableCharListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>CharArrayList. chunk(int size)Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanCharArrayList. addAll(CharIterable source)booleanCharArrayList. addAllAtIndex(int index, CharIterable source)booleanSynchronizedCharList. addAllAtIndex(int index, CharIterable source)booleanUnmodifiableCharList. addAllAtIndex(int index, CharIterable source)static CharArrayListCharArrayList. newList(CharIterable source)MutableCharListMutableCharListFactoryImpl. ofAll(CharIterable items)booleanCharArrayList. removeAll(CharIterable source)booleanCharArrayList. retainAll(CharIterable source)CharArrayListCharArrayList. withAll(CharIterable elements)MutableCharListMutableCharListFactoryImpl. withAll(CharIterable items)SynchronizedCharListSynchronizedCharList. withAll(CharIterable elements)UnmodifiableCharListUnmodifiableCharList. withAll(CharIterable elements)CharArrayListCharArrayList. withoutAll(CharIterable elements)SynchronizedCharListSynchronizedCharList. withoutAll(CharIterable elements)UnmodifiableCharListUnmodifiableCharList. withoutAll(CharIterable elements)MutableList<CharCharPair>CharArrayList. zipChar(CharIterable iterable)MutableList<CharCharPair>SynchronizedCharList. zipChar(CharIterable iterable)MutableList<CharCharPair>UnmodifiableCharList. zipChar(CharIterable iterable) -
Uses of CharIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement CharIterable Modifier and Type Class Description classAbstractImmutableObjectCharMap<V>This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) classImmutableByteCharEmptyMapImmutableByteCharEmptyMap is an optimization forImmutableByteCharMapof size 0.(package private) classImmutableByteCharHashMapImmutableByteCharHashMap is the non-modifiable equivalent ofByteCharHashMap.(package private) classImmutableByteCharSingletonMapImmutableByteCharSingletonMap is an optimization forImmutableByteCharMapof size 1.(package private) classImmutableCharCharEmptyMapImmutableCharCharEmptyMap is an optimization forImmutableCharCharMapof size 0.(package private) classImmutableCharCharHashMapImmutableCharCharHashMap is the non-modifiable equivalent ofCharCharHashMap.(package private) classImmutableCharCharSingletonMapImmutableCharCharSingletonMap is an optimization forImmutableCharCharMapof size 1.(package private) classImmutableDoubleCharEmptyMapImmutableDoubleCharEmptyMap is an optimization forImmutableDoubleCharMapof size 0.(package private) classImmutableDoubleCharHashMapImmutableDoubleCharHashMap is the non-modifiable equivalent ofDoubleCharHashMap.(package private) classImmutableDoubleCharSingletonMapImmutableDoubleCharSingletonMap is an optimization forImmutableDoubleCharMapof size 1.(package private) classImmutableFloatCharEmptyMapImmutableFloatCharEmptyMap is an optimization forImmutableFloatCharMapof size 0.(package private) classImmutableFloatCharHashMapImmutableFloatCharHashMap is the non-modifiable equivalent ofFloatCharHashMap.(package private) classImmutableFloatCharSingletonMapImmutableFloatCharSingletonMap is an optimization forImmutableFloatCharMapof size 1.(package private) classImmutableIntCharEmptyMapImmutableIntCharEmptyMap is an optimization forImmutableIntCharMapof size 0.(package private) classImmutableIntCharHashMapImmutableIntCharHashMap is the non-modifiable equivalent ofIntCharHashMap.(package private) classImmutableIntCharSingletonMapImmutableIntCharSingletonMap is an optimization forImmutableIntCharMapof size 1.(package private) classImmutableLongCharEmptyMapImmutableLongCharEmptyMap is an optimization forImmutableLongCharMapof size 0.(package private) classImmutableLongCharHashMapImmutableLongCharHashMap is the non-modifiable equivalent ofLongCharHashMap.(package private) classImmutableLongCharSingletonMapImmutableLongCharSingletonMap is an optimization forImmutableLongCharMapof size 1.(package private) classImmutableObjectCharEmptyMap<K>ImmutableObjectCharEmptyMap is an optimization forImmutableObjectCharMapof size 0.(package private) classImmutableObjectCharHashMap<K>ImmutableObjectCharHashMap is the non-modifiable equivalent ofObjectCharHashMap.(package private) classImmutableObjectCharSingletonMap<K>ImmutableObjectCharSingletonMap is an optimization forImmutableObjectCharMapof size 1.(package private) classImmutableShortCharEmptyMapImmutableShortCharEmptyMap is an optimization forImmutableShortCharMapof size 0.(package private) classImmutableShortCharHashMapImmutableShortCharHashMap is the non-modifiable equivalent ofShortCharHashMap.(package private) classImmutableShortCharSingletonMapImmutableShortCharSingletonMap is an optimization forImmutableShortCharMapof size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>ImmutableByteCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableByteCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableByteCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableCharCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableCharCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableCharCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableDoubleCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableDoubleCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableDoubleCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableFloatCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableFloatCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableFloatCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableIntCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableIntCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableIntCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableLongCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableLongCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableLongCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableObjectCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableObjectCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableObjectCharSingletonMap. chunk(int size)RichIterable<CharIterable>ImmutableShortCharEmptyMap. chunk(int size)RichIterable<CharIterable>ImmutableShortCharHashMap. chunk(int size)RichIterable<CharIterable>ImmutableShortCharSingletonMap. chunk(int size)Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanImmutableByteCharEmptyMap. containsAll(CharIterable source)booleanImmutableByteCharHashMap. containsAll(CharIterable source)booleanImmutableByteCharSingletonMap. containsAll(CharIterable source)booleanImmutableCharCharEmptyMap. containsAll(CharIterable source)booleanImmutableCharCharHashMap. containsAll(CharIterable source)booleanImmutableCharCharSingletonMap. containsAll(CharIterable source)booleanImmutableDoubleCharEmptyMap. containsAll(CharIterable source)booleanImmutableDoubleCharHashMap. containsAll(CharIterable source)booleanImmutableDoubleCharSingletonMap. containsAll(CharIterable source)booleanImmutableFloatCharEmptyMap. containsAll(CharIterable source)booleanImmutableFloatCharHashMap. containsAll(CharIterable source)booleanImmutableFloatCharSingletonMap. containsAll(CharIterable source)booleanImmutableIntCharEmptyMap. containsAll(CharIterable source)booleanImmutableIntCharHashMap. containsAll(CharIterable source)booleanImmutableIntCharSingletonMap. containsAll(CharIterable source)booleanImmutableLongCharEmptyMap. containsAll(CharIterable source)booleanImmutableLongCharHashMap. containsAll(CharIterable source)booleanImmutableLongCharSingletonMap. containsAll(CharIterable source)booleanImmutableObjectCharEmptyMap. containsAll(CharIterable source)booleanImmutableObjectCharHashMap. containsAll(CharIterable source)booleanImmutableObjectCharSingletonMap. containsAll(CharIterable source)booleanImmutableShortCharEmptyMap. containsAll(CharIterable source)booleanImmutableShortCharHashMap. containsAll(CharIterable source)booleanImmutableShortCharSingletonMap. containsAll(CharIterable source)ImmutableCharBooleanMapImmutableCharBooleanEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharBooleanMapImmutableCharBooleanHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharBooleanMapImmutableCharBooleanSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharByteMapImmutableCharByteEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharByteMapImmutableCharByteHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharByteMapImmutableCharByteSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharCharMapImmutableCharCharEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharCharMapImmutableCharCharHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharCharMapImmutableCharCharSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharDoubleMapImmutableCharDoubleEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharDoubleMapImmutableCharDoubleHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharDoubleMapImmutableCharDoubleSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharFloatMapImmutableCharFloatEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharFloatMapImmutableCharFloatHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharFloatMapImmutableCharFloatSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharIntMapImmutableCharIntEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharIntMapImmutableCharIntHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharIntMapImmutableCharIntSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharLongMapImmutableCharLongEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharLongMapImmutableCharLongHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharLongMapImmutableCharLongSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharObjectMap<V>ImmutableCharObjectEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharObjectMap<V>ImmutableCharObjectHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharObjectMap<V>ImmutableCharObjectSingletonMap. newWithoutAllKeys(CharIterable keys)ImmutableCharShortMapImmutableCharShortEmptyMap. newWithoutAllKeys(CharIterable keys)ImmutableCharShortMapImmutableCharShortHashMap. newWithoutAllKeys(CharIterable keys)ImmutableCharShortMapImmutableCharShortSingletonMap. newWithoutAllKeys(CharIterable keys)Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RImmutableByteObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RImmutableCharObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RImmutableDoubleObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RImmutableFloatObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RImmutableIntObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RImmutableLongObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RImmutableShortObjectEmptyMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RUnmodifiableMutableMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement CharIterable Modifier and Type Class Description classAbstractMutableCharKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classAbstractMutableCharValuesMapThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected classAbstractMutableCharValuesMap.AbstractCharValuesCollectionclassByteCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classByteCharHashMap.ValuesCollectionprivate classCharBooleanHashMap.KeySetprivate classCharBooleanHashMap.KeysViewprivate classCharByteHashMap.KeySetprivate classCharByteHashMap.KeysViewclassCharCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classCharCharHashMap.KeySetprivate classCharCharHashMap.KeysViewprivate classCharCharHashMap.ValuesCollectionprivate classCharDoubleHashMap.KeySetprivate classCharDoubleHashMap.KeysViewprivate classCharFloatHashMap.KeySetprivate classCharFloatHashMap.KeysViewprivate classCharIntHashMap.KeySetprivate classCharIntHashMap.KeysViewprivate classCharLongHashMap.KeySetprivate classCharLongHashMap.KeysViewprivate classCharObjectHashMap.KeySetprivate classCharObjectHashMap.KeysViewprivate classCharShortHashMap.KeySetprivate classCharShortHashMap.KeysViewclassDoubleCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classDoubleCharHashMap.ValuesCollectionclassFloatCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classFloatCharHashMap.ValuesCollection(package private) classImmutableCharCharMapKeySetThis file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) classImmutableCharMapKeySetThis file was automatically generated from template file immutablePrimitiveMapKeySet.stgclassIntCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classIntCharHashMap.ValuesCollectionclassLongCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classLongCharHashMap.ValuesCollectionclassObjectCharHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.private classObjectCharHashMap.ValuesCollectionclassObjectCharHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private classObjectCharHashMapWithHashingStrategy.ValuesCollectionclassShortCharHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classShortCharHashMap.ValuesCollectionclassSynchronizedByteCharMapA synchronized view of aMutableByteCharMap.classSynchronizedCharCharMapA synchronized view of aMutableCharCharMap.classSynchronizedDoubleCharMapA synchronized view of aMutableDoubleCharMap.classSynchronizedFloatCharMapA synchronized view of aMutableFloatCharMap.classSynchronizedIntCharMapA synchronized view of aMutableIntCharMap.classSynchronizedLongCharMapA synchronized view of aMutableLongCharMap.classSynchronizedObjectCharMap<K>A synchronized view of aMutableObjectCharMap.classSynchronizedShortCharMapA synchronized view of aMutableShortCharMap.classUnmodifiableByteCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableCharCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableDoubleCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableFloatCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableIntCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableLongCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableObjectCharMap<K>This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.classUnmodifiableShortCharMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>AbstractMutableCharKeySet. chunk(int size)RichIterable<CharIterable>AbstractMutableCharValuesMap.AbstractCharValuesCollection. chunk(int size)RichIterable<CharIterable>AbstractMutableCharValuesMap. chunk(int size)RichIterable<CharIterable>ObjectCharHashMap. chunk(int size)RichIterable<CharIterable>ObjectCharHashMap.ValuesCollection. chunk(int size)RichIterable<CharIterable>ObjectCharHashMapWithHashingStrategy. chunk(int size)RichIterable<CharIterable>ObjectCharHashMapWithHashingStrategy.ValuesCollection. chunk(int size)RichIterable<CharIterable>SynchronizedByteCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedCharCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedDoubleCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedFloatCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedIntCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedLongCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedObjectCharMap. chunk(int size)RichIterable<CharIterable>SynchronizedShortCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableByteCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableCharCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableDoubleCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableFloatCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableIntCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableLongCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableObjectCharMap. chunk(int size)RichIterable<CharIterable>UnmodifiableShortCharMap. chunk(int size)Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanAbstractMutableCharKeySet. addAll(CharIterable source)booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection. addAll(CharIterable source)booleanObjectCharHashMap.ValuesCollection. addAll(CharIterable source)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. addAll(CharIterable source)booleanAbstractMutableCharKeySet. containsAll(CharIterable source)booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection. containsAll(CharIterable source)booleanAbstractMutableCharValuesMap. containsAll(CharIterable source)booleanCharBooleanHashMap.KeysView. containsAll(CharIterable source)booleanObjectCharHashMap. containsAll(CharIterable source)booleanObjectCharHashMap.ValuesCollection. containsAll(CharIterable source)booleanObjectCharHashMapWithHashingStrategy. containsAll(CharIterable source)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. containsAll(CharIterable source)booleanSynchronizedByteCharMap. containsAll(CharIterable source)booleanSynchronizedCharCharMap. containsAll(CharIterable source)booleanSynchronizedDoubleCharMap. containsAll(CharIterable source)booleanSynchronizedFloatCharMap. containsAll(CharIterable source)booleanSynchronizedIntCharMap. containsAll(CharIterable source)booleanSynchronizedLongCharMap. containsAll(CharIterable source)booleanSynchronizedObjectCharMap. containsAll(CharIterable source)booleanSynchronizedShortCharMap. containsAll(CharIterable source)booleanUnmodifiableByteCharMap. containsAll(CharIterable source)booleanUnmodifiableCharCharMap. containsAll(CharIterable source)booleanUnmodifiableDoubleCharMap. containsAll(CharIterable source)booleanUnmodifiableFloatCharMap. containsAll(CharIterable source)booleanUnmodifiableIntCharMap. containsAll(CharIterable source)booleanUnmodifiableLongCharMap. containsAll(CharIterable source)booleanUnmodifiableObjectCharMap. containsAll(CharIterable source)booleanUnmodifiableShortCharMap. containsAll(CharIterable source)booleanAbstractMutableCharKeySet. removeAll(CharIterable source)booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection. removeAll(CharIterable source)booleanObjectCharHashMap.ValuesCollection. removeAll(CharIterable source)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. removeAll(CharIterable source)booleanByteCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanCharBooleanHashMap.KeySet. retainAll(CharIterable source)booleanCharByteHashMap.KeySet. retainAll(CharIterable source)booleanCharCharHashMap.KeySet. retainAll(CharIterable source)booleanCharCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanCharDoubleHashMap.KeySet. retainAll(CharIterable source)booleanCharFloatHashMap.KeySet. retainAll(CharIterable source)booleanCharIntHashMap.KeySet. retainAll(CharIterable source)booleanCharLongHashMap.KeySet. retainAll(CharIterable source)booleanCharObjectHashMap.KeySet. retainAll(CharIterable source)booleanCharShortHashMap.KeySet. retainAll(CharIterable source)booleanDoubleCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanFloatCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanIntCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanLongCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanObjectCharHashMap.ValuesCollection. retainAll(CharIterable source)booleanObjectCharHashMapWithHashingStrategy.ValuesCollection. retainAll(CharIterable source)booleanShortCharHashMap.ValuesCollection. retainAll(CharIterable source)MutableCharSetAbstractMutableCharKeySet. withAll(CharIterable elements)MutableCharCollectionAbstractMutableCharValuesMap.AbstractCharValuesCollection. withAll(CharIterable elements)MutableCharCollectionObjectCharHashMap.ValuesCollection. withAll(CharIterable elements)MutableCharCollectionObjectCharHashMapWithHashingStrategy.ValuesCollection. withAll(CharIterable elements)MutableCharSetAbstractMutableCharKeySet. withoutAll(CharIterable elements)MutableCharCollectionAbstractMutableCharValuesMap.AbstractCharValuesCollection. withoutAll(CharIterable elements)MutableCharCollectionObjectCharHashMap.ValuesCollection. withoutAll(CharIterable elements)MutableCharCollectionObjectCharHashMapWithHashingStrategy.ValuesCollection. withoutAll(CharIterable elements)CharBooleanHashMapCharBooleanHashMap. withoutAllKeys(CharIterable keys)CharByteHashMapCharByteHashMap. withoutAllKeys(CharIterable keys)CharCharHashMapCharCharHashMap. withoutAllKeys(CharIterable keys)CharDoubleHashMapCharDoubleHashMap. withoutAllKeys(CharIterable keys)CharFloatHashMapCharFloatHashMap. withoutAllKeys(CharIterable keys)CharIntHashMapCharIntHashMap. withoutAllKeys(CharIterable keys)CharLongHashMapCharLongHashMap. withoutAllKeys(CharIterable keys)MutableCharObjectMap<V>CharObjectHashMap. withoutAllKeys(CharIterable keys)CharShortHashMapCharShortHashMap. withoutAllKeys(CharIterable keys)MutableCharBooleanMapSynchronizedCharBooleanMap. withoutAllKeys(CharIterable keys)MutableCharByteMapSynchronizedCharByteMap. withoutAllKeys(CharIterable keys)MutableCharCharMapSynchronizedCharCharMap. withoutAllKeys(CharIterable keys)MutableCharDoubleMapSynchronizedCharDoubleMap. withoutAllKeys(CharIterable keys)MutableCharFloatMapSynchronizedCharFloatMap. withoutAllKeys(CharIterable keys)MutableCharIntMapSynchronizedCharIntMap. withoutAllKeys(CharIterable keys)MutableCharLongMapSynchronizedCharLongMap. withoutAllKeys(CharIterable keys)MutableCharObjectMap<V>SynchronizedCharObjectMap. withoutAllKeys(CharIterable keys)MutableCharShortMapSynchronizedCharShortMap. withoutAllKeys(CharIterable keys)MutableCharBooleanMapUnmodifiableCharBooleanMap. withoutAllKeys(CharIterable keys)MutableCharByteMapUnmodifiableCharByteMap. withoutAllKeys(CharIterable keys)MutableCharCharMapUnmodifiableCharCharMap. withoutAllKeys(CharIterable keys)MutableCharDoubleMapUnmodifiableCharDoubleMap. withoutAllKeys(CharIterable keys)MutableCharFloatMapUnmodifiableCharFloatMap. withoutAllKeys(CharIterable keys)MutableCharIntMapUnmodifiableCharIntMap. withoutAllKeys(CharIterable keys)MutableCharLongMapUnmodifiableCharLongMap. withoutAllKeys(CharIterable keys)MutableCharObjectMap<V>UnmodifiableCharObjectMap. withoutAllKeys(CharIterable keys)MutableCharShortMapUnmodifiableCharShortMap. withoutAllKeys(CharIterable keys)Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RSynchronizedByteObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedCharObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedDoubleObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedFloatObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedIntObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedLongObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedShortObjectMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.map.ordered.mutable
Method parameters in org.eclipse.collections.impl.map.ordered.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RUnmodifiableMutableOrderedMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.map.sorted.mutable
Method parameters in org.eclipse.collections.impl.map.sorted.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RUnmodifiableTreeMap. flatCollectChar(Function<? super V,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.primitive
Classes in org.eclipse.collections.impl.primitive that implement CharIterable Modifier and Type Class Description classAbstractCharIterableThis file was automatically generated from template file abstractPrimitiveIterable.stg.classSynchronizedCharIterableA synchronized view of a CharIterable.Fields in org.eclipse.collections.impl.primitive declared as CharIterable Modifier and Type Field Description private CharIterableSynchronizedCharIterable. iterableMethods in org.eclipse.collections.impl.primitive that return CharIterable Modifier and Type Method Description CharIterableSynchronizedCharIterable. reject(CharPredicate predicate)CharIterableSynchronizedCharIterable. select(CharPredicate predicate)Methods in org.eclipse.collections.impl.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>SynchronizedCharIterable. chunk(int size)Methods in org.eclipse.collections.impl.primitive with parameters of type CharIterable Modifier and Type Method Description booleanSynchronizedCharIterable. containsAll(CharIterable source)booleanSynchronizedCharIterable. containsAny(CharIterable source)booleanSynchronizedCharIterable. containsNone(CharIterable source)static SynchronizedCharIterableSynchronizedCharIterable. of(CharIterable iterable)This method will take a CharIterable and wrap it directly in a SynchronizedCharIterable.static SynchronizedCharIterableSynchronizedCharIterable. of(CharIterable iterable, java.lang.Object lock)This method will take a CharIterable and wrap it directly in a SynchronizedCharIterable.Constructors in org.eclipse.collections.impl.primitive with parameters of type CharIterable Constructor Description SynchronizedCharIterable(CharIterable iterable)SynchronizedCharIterable(CharIterable iterable, java.lang.Object newLock) -
Uses of CharIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement CharIterable Modifier and Type Class Description classAbstractImmutableCharSetThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) classImmutableCharEmptySetImmutableCharEmptySet is an optimization forImmutableCharSetof size 0.(package private) classImmutableCharSingletonSetImmutableCharSingletonSet is an optimization forImmutableCharSetof size 1.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>AbstractImmutableCharSet. chunk(int size)RichIterable<CharIterable>ImmutableCharEmptySet. chunk(int size)RichIterable<CharIterable>ImmutableCharSingletonSet. chunk(int size)Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanImmutableCharEmptySet. containsAll(CharIterable source)booleanImmutableCharSingletonSet. containsAll(CharIterable source)ImmutableCharSetAbstractImmutableCharSet. newWithAll(CharIterable elements)ImmutableCharSetImmutableCharEmptySet. newWithAll(CharIterable elements)ImmutableCharSetImmutableCharSingletonSet. newWithAll(CharIterable elements)ImmutableCharSetAbstractImmutableCharSet. newWithoutAll(CharIterable elements)ImmutableCharSetImmutableCharEmptySet. newWithoutAll(CharIterable elements)ImmutableCharSetImmutableCharSingletonSet. newWithoutAll(CharIterable elements)ImmutableCharSetImmutableCharSetFactoryImpl. ofAll(CharIterable items)ImmutableCharSetImmutableCharSetFactoryImpl. withAll(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement CharIterable Modifier and Type Class Description classCharHashSetThis file was automatically generated from template file primitiveHashSet.stg.private static classCharHashSet.ImmutableCharHashSetclassSynchronizedCharSetA synchronized view of aMutableCharSet.classUnmodifiableCharSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>CharHashSet. chunk(int size)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanCharHashSet. addAll(CharIterable source)static CharHashSetCharHashSet. newSet(CharIterable source)MutableCharSetMutableCharSetFactoryImpl. ofAll(CharIterable items)booleanCharHashSet. removeAll(CharIterable source)booleanCharHashSet. retainAll(CharIterable source)CharHashSetCharHashSet. withAll(CharIterable elements)MutableCharSetMutableCharSetFactoryImpl. withAll(CharIterable items)SynchronizedCharSetSynchronizedCharSet. withAll(CharIterable elements)UnmodifiableCharSetUnmodifiableCharSet. withAll(CharIterable elements)CharHashSetCharHashSet. withoutAll(CharIterable elements)SynchronizedCharSetSynchronizedCharSet. withoutAll(CharIterable elements)UnmodifiableCharSetUnmodifiableCharSet. withoutAll(CharIterable elements)Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type CharIterable Constructor Description CharHashSet(CharIterable elements) -
Uses of CharIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement CharIterable Modifier and Type Class Description classAbstractCharSetThis file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of CharIterable in org.eclipse.collections.impl.stack.immutable
Method parameters in org.eclipse.collections.impl.stack.immutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RImmutableArrayStack. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)Deprecated.<R extends MutableCharCollection>
RImmutableEmptyStack. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement CharIterable Modifier and Type Class Description (package private) classImmutableCharArrayStackImmutableCharArrayStack is the non-modifiable equivalent ofCharArrayStack.(package private) classImmutableCharEmptyStackImmutableCharEmptyStack is an optimization forImmutableCharStackof size 0.(package private) classImmutableCharSingletonStackImmutableCharSingletonStack is an optimization forImmutableCharStackof size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>ImmutableCharEmptyStack. chunk(int size)RichIterable<CharIterable>ImmutableCharSingletonStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanImmutableCharEmptyStack. containsAll(CharIterable source)booleanImmutableCharSingletonStack. containsAll(CharIterable source)static ImmutableCharArrayStackImmutableCharArrayStack. newStack(CharIterable iterable)static ImmutableCharArrayStackImmutableCharArrayStack. newStackFromTopToBottom(CharIterable items)ImmutableCharStackImmutableCharStackFactoryImpl. ofAll(CharIterable items)ImmutableCharStackImmutableCharStackFactoryImpl. ofAllReversed(CharIterable items)ImmutableCharStackImmutableCharStackFactoryImpl. withAll(CharIterable items)ImmutableCharStackImmutableCharStackFactoryImpl. withAllReversed(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.impl.stack.mutable
Method parameters in org.eclipse.collections.impl.stack.mutable with type arguments of type CharIterable Modifier and Type Method Description <R extends MutableCharCollection>
RArrayStack. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RSynchronizedStack. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)<R extends MutableCharCollection>
RUnmodifiableStack. flatCollectChar(Function<? super T,? extends CharIterable> function, R target) -
Uses of CharIterable in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement CharIterable Modifier and Type Class Description classCharArrayStackCharArrayStack is similar toArrayStack, and is memory-optimized for char primitives.classSynchronizedCharStackA synchronized view of aMutableCharStack.classUnmodifiableCharStackThis file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>SynchronizedCharStack. chunk(int size)RichIterable<CharIterable>UnmodifiableCharStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type CharIterable Modifier and Type Method Description booleanSynchronizedCharStack. containsAll(CharIterable source)booleanUnmodifiableCharStack. containsAll(CharIterable source)static CharArrayStackCharArrayStack. newStack(CharIterable items)static CharArrayStackCharArrayStack. newStackFromTopToBottom(CharIterable items)MutableCharStackMutableCharStackFactoryImpl. ofAll(CharIterable items)MutableCharStackMutableCharStackFactoryImpl. ofAllReversed(CharIterable items)MutableCharStackMutableCharStackFactoryImpl. withAll(CharIterable items)MutableCharStackMutableCharStackFactoryImpl. withAllReversed(CharIterable items) -
Uses of CharIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement CharIterable Modifier and Type Class Description classAbstractCharStackThis file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>AbstractCharStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.primitive with parameters of type CharIterable Modifier and Type Method Description booleanAbstractCharStack. containsAll(CharIterable source) -
Uses of CharIterable in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement CharIterable Modifier and Type Class Description classCharAdapterProvides a view into the char[] stored in a String as an ImmutableCharList.Methods in org.eclipse.collections.impl.string.immutable that return types with arguments of type CharIterable Modifier and Type Method Description RichIterable<CharIterable>CharAdapter. chunk(int size)Methods in org.eclipse.collections.impl.string.immutable with parameters of type CharIterable Modifier and Type Method Description static CharAdapterCharAdapter. from(CharIterable iterable)CharAdapterCharAdapter. newWithAll(CharIterable elements)CharAdapterCharAdapter. newWithoutAll(CharIterable elements)ImmutableList<CharCharPair>CharAdapter. zipChar(CharIterable iterable) -
Uses of CharIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type CharIterable Modifier and Type Method Description static booleanCharIterableIterate. allSatisfy(CharIterable iterable, CharPredicate predicate)static booleanCharIterableIterate. anySatisfy(CharIterable iterable, CharPredicate predicate)static voidCharIterableIterate. appendString(CharIterable iterable, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)static <V,R extends java.util.Collection<V>>
RCharIterableIterate. collect(CharIterable iterable, CharToObjectFunction<? extends V> function, R targetCollection)static intCharIterableIterate. count(CharIterable iterable, CharPredicate predicate)static charCharIterableIterate. detectIfNone(CharIterable iterable, CharPredicate predicate, char ifNone)static voidCharIterableIterate. forEach(CharIterable iterable, CharProcedure procedure)static <T> TCharIterableIterate. injectInto(CharIterable iterable, T injectedValue, ObjectCharToObjectFunction<? super T,? extends T> function)static booleanCharIterableIterate. isEmpty(CharIterable iterable)static charCharIterableIterate. max(CharIterable iterable)static charCharIterableIterate. maxIfEmpty(CharIterable iterable, char ifEmpty)static charCharIterableIterate. min(CharIterable iterable)static charCharIterableIterate. minIfEmpty(CharIterable iterable, char ifEmpty)static booleanCharIterableIterate. noneSatisfy(CharIterable iterable, CharPredicate predicate)static booleanCharIterableIterate. notEmpty(CharIterable iterable)static <R extends MutableCharCollection>
RCharIterableIterate. reject(CharIterable iterable, CharPredicate predicate, R targetCollection)static <R extends MutableCharCollection>
RCharIterableIterate. select(CharIterable iterable, CharPredicate predicate, R targetCollection)private static <T> java.lang.StringCharIterableIterate. stringValueOfItem(CharIterable iterable, T item)static longCharIterableIterate. sum(CharIterable iterable) -
Uses of CharIterable in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type CharIterable Modifier and Type Method Description static LazyCharIterableLazyCharIterate. adapt(CharIterable iterable)Creates a deferred char iterable for the specified char iterable.static <V> LazyIterable<V>LazyCharIterate. collect(CharIterable iterable, CharToObjectFunction<? extends V> function)Creates a deferred transforming char iterable for the specified char iterable.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 <V> LazyIterable<V>LazyCharIterate. flatCollect(CharIterable iterable, CharToObjectFunction<? extends java.lang.Iterable<V>> function)Creates a deferred transforming and flattening 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.static LazyCharIterableLazyCharIterate. tap(CharIterable iterable, CharProcedure procedure)Creates a deferred tap iterable for the specified iterable.
-