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 theMutableBiMap
interface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.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 theMutableList
interface.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 theMutableMap
interface.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 theMutableSortedMap
interface.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 theImmutableStack
interface.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 theMutableStack
interface.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 interface
LazyCharIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return CharIterable Modifier and Type Method Description CharIterable
RichIterable. collectChar(CharFunction<? super T> charFunction)
Returns a new primitivechar
iterable with the results of applying the specified function on each element of the source collection.CharIterable
CharIterable. reject(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.CharIterable
CharIterable. select(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.default CharIterable
CharIterable. 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 boolean
CharIterable. 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 boolean
CharIterable. 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 boolean
CharIterable. 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 interface
CharBag
This file was automatically generated from template file primitiveBag.stg.interface
ImmutableCharBag
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
MutableCharBag
This 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 ImmutableCharBag
ImmutableCharBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharBag. newWithoutAll(CharIterable elements)
MutableCharBag
MutableCharBag. withAll(CharIterable elements)
MutableCharBag
MutableCharBag. 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 interface
ImmutableCharCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
MutableCharCollection
This 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 boolean
MutableCharCollection. addAll(CharIterable source)
ImmutableCharCollection
ImmutableCharCollection. newWithAll(CharIterable elements)
ImmutableCharCollection
ImmutableCharCollection. newWithoutAll(CharIterable elements)
boolean
MutableCharCollection. removeAll(CharIterable source)
boolean
MutableCharCollection. retainAll(CharIterable elements)
MutableCharCollection
MutableCharCollection. withAll(CharIterable elements)
MutableCharCollection
MutableCharCollection. 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 ImmutableCharBag
ImmutableCharBagFactory. ofAll(CharIterable items)
MutableCharBag
MutableCharBagFactory. ofAll(CharIterable items)
ImmutableCharBag
ImmutableCharBagFactory. withAll(CharIterable items)
MutableCharBag
MutableCharBagFactory. 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 ImmutableCharList
ImmutableCharListFactory. ofAll(CharIterable items)
MutableCharList
MutableCharListFactory. ofAll(CharIterable items)
ImmutableCharList
ImmutableCharListFactory. withAll(CharIterable items)
MutableCharList
MutableCharListFactory. 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 ImmutableCharSet
ImmutableCharSetFactory. ofAll(CharIterable items)
MutableCharSet
MutableCharSetFactory. ofAll(CharIterable items)
ImmutableCharSet
ImmutableCharSetFactory. withAll(CharIterable items)
MutableCharSet
MutableCharSetFactory. 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 ImmutableCharStack
ImmutableCharStackFactory. ofAll(CharIterable items)
MutableCharStack
MutableCharStackFactory. ofAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactory. ofAllReversed(CharIterable items)
MutableCharStack
MutableCharStackFactory. ofAllReversed(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactory. withAll(CharIterable items)
MutableCharStack
MutableCharStackFactory. withAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactory. withAllReversed(CharIterable items)
MutableCharStack
MutableCharStackFactory. 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 interface
CharList
This file was automatically generated from template file primitiveList.stg.interface
ImmutableCharList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableCharList
This 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 boolean
MutableCharList. addAllAtIndex(int index, CharIterable source)
ImmutableCharList
ImmutableCharList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharList. newWithoutAll(CharIterable elements)
MutableCharList
MutableCharList. withAll(CharIterable elements)
MutableCharList
MutableCharList. withoutAll(CharIterable elements)
default ListIterable<CharCharPair>
CharList. zipChar(CharIterable iterable)
Returns aListIterable
formed from thisCharList
and anotherCharList
by combining corresponding elements in pairs.default ImmutableList<CharCharPair>
ImmutableCharList. zipChar(CharIterable iterable)
Returns anImmutableList
formed from thisImmutableCharList
and anotherCharList
by combining corresponding elements in pairs.default MutableList<CharCharPair>
MutableCharList. zipChar(CharIterable iterable)
Returns aMutableList
formed from thisMutableCharList
and anotherCharList
by 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 interface
ByteCharMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
CharCharMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
CharValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.interface
DoubleCharMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
FloatCharMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ImmutableByteCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableCharCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableDoubleCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableFloatCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableIntCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableLongCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableObjectCharMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
ImmutableShortCharMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
IntCharMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
LongCharMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
MutableByteCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableCharCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableCharValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
MutableDoubleCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableFloatCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableLongCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableObjectCharMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
MutableShortCharMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
ObjectCharMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.interface
ShortCharMap
This 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 ImmutableCharBooleanMap
ImmutableCharBooleanMap. 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.ImmutableCharByteMap
ImmutableCharByteMap. 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.ImmutableCharCharMap
ImmutableCharCharMap. 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.ImmutableCharDoubleMap
ImmutableCharDoubleMap. 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.ImmutableCharFloatMap
ImmutableCharFloatMap. 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.ImmutableCharIntMap
ImmutableCharIntMap. 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.ImmutableCharLongMap
ImmutableCharLongMap. 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.ImmutableCharShortMap
ImmutableCharShortMap. 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.MutableCharBooleanMap
MutableCharBooleanMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharByteMap
MutableCharByteMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharCharMap
MutableCharCharMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharDoubleMap
MutableCharDoubleMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharFloatMap
MutableCharFloatMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharIntMap
MutableCharIntMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharLongMap
MutableCharLongMap. 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.MutableCharShortMap
MutableCharShortMap. 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 interface
OrderedCharIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
ReversibleCharIterable
This 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 interface
CharSet
This file was automatically generated from template file primitiveSet.stg.interface
ImmutableCharSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
MutableCharSet
This 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 ImmutableCharSet
ImmutableCharSet. newWithAll(CharIterable elements)
ImmutableCharSet
ImmutableCharSet. newWithoutAll(CharIterable elements)
MutableCharSet
MutableCharSet. withAll(CharIterable elements)
MutableCharSet
MutableCharSet. 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 interface
CharStack
This file was automatically generated from template file primitiveStack.stg.interface
ImmutableCharStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableCharStack
This 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 CharIterable
UnmodifiableRichIterable. 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) class
ImmutableCharEmptyBag
ImmutableCharEmptyBag is an optimization forImmutableCharBag
of size 0.(package private) class
ImmutableCharHashBag
ImmutableCharHashBag is the non-modifiable equivalent ofCharHashBag
.(package private) class
ImmutableCharSingletonBag
ImmutableCharSingletonBag is an optimization forImmutableCharBag
of 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 boolean
ImmutableCharEmptyBag. containsAll(CharIterable source)
boolean
ImmutableCharHashBag. containsAll(CharIterable source)
boolean
ImmutableCharSingletonBag. containsAll(CharIterable source)
ImmutableCharBag
ImmutableCharEmptyBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharHashBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharSingletonBag. newWithAll(CharIterable elements)
ImmutableCharBag
ImmutableCharEmptyBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharHashBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharSingletonBag. newWithoutAll(CharIterable elements)
ImmutableCharBag
ImmutableCharBagFactoryImpl. ofAll(CharIterable items)
ImmutableCharBag
ImmutableCharBagFactoryImpl. 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 class
CharHashBag
CharHashBag is similar toHashBag
, and is memory-optimized for char primitives.class
SynchronizedCharBag
A synchronized view of aMutableCharBag
.class
UnmodifiableCharBag
This 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 boolean
CharHashBag. addAll(CharIterable source)
static CharHashBag
CharHashBag. newBag(CharIterable source)
MutableCharBag
MutableCharBagFactoryImpl. ofAll(CharIterable items)
boolean
CharHashBag. removeAll(CharIterable source)
boolean
CharHashBag. retainAll(CharIterable source)
CharHashBag
CharHashBag. withAll(CharIterable iterable)
MutableCharBag
MutableCharBagFactoryImpl. withAll(CharIterable items)
SynchronizedCharBag
SynchronizedCharBag. withAll(CharIterable elements)
UnmodifiableCharBag
UnmodifiableCharBag. withAll(CharIterable elements)
CharHashBag
CharHashBag. withoutAll(CharIterable iterable)
SynchronizedCharBag
SynchronizedCharBag. withoutAll(CharIterable elements)
UnmodifiableCharBag
UnmodifiableCharBag. 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 CharIterable
UnmodifiableBiMap. 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 CharIterable
AbstractSynchronizedRichIterable. 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 class
AbstractSynchronizedCharCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableCharCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedCharCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableCharCollection
This 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 boolean
AbstractSynchronizedCharCollection. addAll(CharIterable source)
boolean
AbstractUnmodifiableCharCollection. addAll(CharIterable source)
boolean
AbstractSynchronizedCharCollection. containsAll(CharIterable source)
boolean
AbstractUnmodifiableCharCollection. containsAll(CharIterable source)
boolean
AbstractSynchronizedCharCollection. containsAny(CharIterable source)
boolean
AbstractUnmodifiableCharCollection. containsAny(CharIterable source)
boolean
AbstractSynchronizedCharCollection. containsNone(CharIterable source)
boolean
AbstractUnmodifiableCharCollection. containsNone(CharIterable source)
boolean
AbstractSynchronizedCharCollection. removeAll(CharIterable source)
boolean
AbstractUnmodifiableCharCollection. removeAll(CharIterable source)
boolean
AbstractSynchronizedCharCollection. retainAll(CharIterable source)
boolean
AbstractUnmodifiableCharCollection. retainAll(CharIterable source)
MutableCharCollection
AbstractSynchronizedCharCollection. withAll(CharIterable elements)
MutableCharCollection
AbstractUnmodifiableCharCollection. withAll(CharIterable elements)
MutableCharCollection
AbstractSynchronizedCharCollection. withoutAll(CharIterable elements)
MutableCharCollection
AbstractUnmodifiableCharCollection. 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 class
AbstractLazyCharIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
CollectBooleanToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectByteToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectCharIterable<T>
This file was automatically generated from template file collectPrimitiveIterable.stg.class
CollectCharToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectDoubleToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectFloatToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectIntToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectLongToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectShortToCharIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
LazyCharIterableAdapter
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
ReverseCharIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.class
SelectCharIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.class
TapCharIterable
This 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 CharIterable
ChunkCharIterable. adapted
private CharIterable
TapCharIterable. adapted
private CharIterable
LazyCharIterableAdapter. delegate
private CharIterable
SelectCharIterable. delegate
private CharIterable
CollectCharToBooleanIterable. iterable
private CharIterable
CollectCharToByteIterable. iterable
private CharIterable
CollectCharToCharIterable. iterable
private CharIterable
CollectCharToDoubleIterable. iterable
private CharIterable
CollectCharToFloatIterable. iterable
private CharIterable
CollectCharToIntIterable. iterable
private CharIterable
CollectCharToLongIterable. iterable
private CharIterable
CollectCharToObjectIterable. iterable
private CharIterable
CollectCharToShortIterable. iterable
private CharIterable
FlatCollectCharToObjectIterable. iterable
Methods in org.eclipse.collections.impl.lazy.primitive that return CharIterable Modifier and Type Method Description CharIterable
ChunkCharIterable.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 boolean
AbstractLazyCharIterable. containsAll(CharIterable source)
boolean
CollectCharIterable. containsAll(CharIterable source)
boolean
LazyCharIterableAdapter. containsAll(CharIterable source)
boolean
ReverseCharIterable. containsAll(CharIterable source)
boolean
SelectCharIterable. containsAll(CharIterable source)
Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type CharIterable Modifier and Type Method Description void
ChunkCharIterable. 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) class
ImmutableCharArrayList
ImmutableCharArrayList is the non-modifiable equivalent ofCharArrayList
.(package private) class
ImmutableCharEmptyList
ImmutableCharEmptyList is an optimization forImmutableCharList
of size 0.(package private) class
ImmutableCharSingletonList
ImmutableCharSingletonList is an optimization forImmutableCharList
of 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 boolean
ImmutableCharArrayList. containsAll(CharIterable source)
boolean
ImmutableCharEmptyList. containsAll(CharIterable source)
boolean
ImmutableCharSingletonList. containsAll(CharIterable source)
static ImmutableCharArrayList
ImmutableCharArrayList. newList(CharIterable iterable)
ImmutableCharList
ImmutableCharArrayList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharEmptyList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharSingletonList. newWithAll(CharIterable elements)
ImmutableCharList
ImmutableCharArrayList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharEmptyList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharSingletonList. newWithoutAll(CharIterable elements)
ImmutableCharList
ImmutableCharListFactoryImpl. ofAll(CharIterable items)
ImmutableCharList
ImmutableCharListFactoryImpl. 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 class
CharArrayList
CharArrayList is similar to FastList, and is memory-optimized for char primitives.class
SynchronizedCharList
A synchronized view of aMutableCharList
.class
UnmodifiableCharList
This 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 boolean
CharArrayList. addAll(CharIterable source)
boolean
CharArrayList. addAllAtIndex(int index, CharIterable source)
boolean
SynchronizedCharList. addAllAtIndex(int index, CharIterable source)
boolean
UnmodifiableCharList. addAllAtIndex(int index, CharIterable source)
static CharArrayList
CharArrayList. newList(CharIterable source)
MutableCharList
MutableCharListFactoryImpl. ofAll(CharIterable items)
boolean
CharArrayList. removeAll(CharIterable source)
boolean
CharArrayList. retainAll(CharIterable source)
CharArrayList
CharArrayList. withAll(CharIterable elements)
MutableCharList
MutableCharListFactoryImpl. withAll(CharIterable items)
SynchronizedCharList
SynchronizedCharList. withAll(CharIterable elements)
UnmodifiableCharList
UnmodifiableCharList. withAll(CharIterable elements)
CharArrayList
CharArrayList. withoutAll(CharIterable elements)
SynchronizedCharList
SynchronizedCharList. withoutAll(CharIterable elements)
UnmodifiableCharList
UnmodifiableCharList. 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 class
AbstractImmutableObjectCharMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableByteCharEmptyMap
ImmutableByteCharEmptyMap is an optimization forImmutableByteCharMap
of size 0.(package private) class
ImmutableByteCharHashMap
ImmutableByteCharHashMap is the non-modifiable equivalent ofByteCharHashMap
.(package private) class
ImmutableByteCharSingletonMap
ImmutableByteCharSingletonMap is an optimization forImmutableByteCharMap
of size 1.(package private) class
ImmutableCharCharEmptyMap
ImmutableCharCharEmptyMap is an optimization forImmutableCharCharMap
of size 0.(package private) class
ImmutableCharCharHashMap
ImmutableCharCharHashMap is the non-modifiable equivalent ofCharCharHashMap
.(package private) class
ImmutableCharCharSingletonMap
ImmutableCharCharSingletonMap is an optimization forImmutableCharCharMap
of size 1.(package private) class
ImmutableDoubleCharEmptyMap
ImmutableDoubleCharEmptyMap is an optimization forImmutableDoubleCharMap
of size 0.(package private) class
ImmutableDoubleCharHashMap
ImmutableDoubleCharHashMap is the non-modifiable equivalent ofDoubleCharHashMap
.(package private) class
ImmutableDoubleCharSingletonMap
ImmutableDoubleCharSingletonMap is an optimization forImmutableDoubleCharMap
of size 1.(package private) class
ImmutableFloatCharEmptyMap
ImmutableFloatCharEmptyMap is an optimization forImmutableFloatCharMap
of size 0.(package private) class
ImmutableFloatCharHashMap
ImmutableFloatCharHashMap is the non-modifiable equivalent ofFloatCharHashMap
.(package private) class
ImmutableFloatCharSingletonMap
ImmutableFloatCharSingletonMap is an optimization forImmutableFloatCharMap
of size 1.(package private) class
ImmutableIntCharEmptyMap
ImmutableIntCharEmptyMap is an optimization forImmutableIntCharMap
of size 0.(package private) class
ImmutableIntCharHashMap
ImmutableIntCharHashMap is the non-modifiable equivalent ofIntCharHashMap
.(package private) class
ImmutableIntCharSingletonMap
ImmutableIntCharSingletonMap is an optimization forImmutableIntCharMap
of size 1.(package private) class
ImmutableLongCharEmptyMap
ImmutableLongCharEmptyMap is an optimization forImmutableLongCharMap
of size 0.(package private) class
ImmutableLongCharHashMap
ImmutableLongCharHashMap is the non-modifiable equivalent ofLongCharHashMap
.(package private) class
ImmutableLongCharSingletonMap
ImmutableLongCharSingletonMap is an optimization forImmutableLongCharMap
of size 1.(package private) class
ImmutableObjectCharEmptyMap<K>
ImmutableObjectCharEmptyMap is an optimization forImmutableObjectCharMap
of size 0.(package private) class
ImmutableObjectCharHashMap<K>
ImmutableObjectCharHashMap is the non-modifiable equivalent ofObjectCharHashMap
.(package private) class
ImmutableObjectCharSingletonMap<K>
ImmutableObjectCharSingletonMap is an optimization forImmutableObjectCharMap
of size 1.(package private) class
ImmutableShortCharEmptyMap
ImmutableShortCharEmptyMap is an optimization forImmutableShortCharMap
of size 0.(package private) class
ImmutableShortCharHashMap
ImmutableShortCharHashMap is the non-modifiable equivalent ofShortCharHashMap
.(package private) class
ImmutableShortCharSingletonMap
ImmutableShortCharSingletonMap is an optimization forImmutableShortCharMap
of 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 boolean
ImmutableByteCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableByteCharHashMap. containsAll(CharIterable source)
boolean
ImmutableByteCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableCharCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableCharCharHashMap. containsAll(CharIterable source)
boolean
ImmutableCharCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableDoubleCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableDoubleCharHashMap. containsAll(CharIterable source)
boolean
ImmutableDoubleCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableFloatCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableFloatCharHashMap. containsAll(CharIterable source)
boolean
ImmutableFloatCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableIntCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableIntCharHashMap. containsAll(CharIterable source)
boolean
ImmutableIntCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableLongCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableLongCharHashMap. containsAll(CharIterable source)
boolean
ImmutableLongCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableObjectCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableObjectCharHashMap. containsAll(CharIterable source)
boolean
ImmutableObjectCharSingletonMap. containsAll(CharIterable source)
boolean
ImmutableShortCharEmptyMap. containsAll(CharIterable source)
boolean
ImmutableShortCharHashMap. containsAll(CharIterable source)
boolean
ImmutableShortCharSingletonMap. containsAll(CharIterable source)
ImmutableCharBooleanMap
ImmutableCharBooleanEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharBooleanMap
ImmutableCharBooleanHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharBooleanMap
ImmutableCharBooleanSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharByteMap
ImmutableCharByteEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharByteMap
ImmutableCharByteHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharByteMap
ImmutableCharByteSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharCharMap
ImmutableCharCharEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharCharMap
ImmutableCharCharHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharCharMap
ImmutableCharCharSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharDoubleMap
ImmutableCharDoubleEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharDoubleMap
ImmutableCharDoubleHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharDoubleMap
ImmutableCharDoubleSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharFloatMap
ImmutableCharFloatEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharFloatMap
ImmutableCharFloatHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharFloatMap
ImmutableCharFloatSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharIntMap
ImmutableCharIntEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharIntMap
ImmutableCharIntHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharIntMap
ImmutableCharIntSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharLongMap
ImmutableCharLongEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharLongMap
ImmutableCharLongHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharLongMap
ImmutableCharLongSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharObjectMap<V>
ImmutableCharObjectEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharObjectMap<V>
ImmutableCharObjectHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharObjectMap<V>
ImmutableCharObjectSingletonMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharShortMap
ImmutableCharShortEmptyMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharShortMap
ImmutableCharShortHashMap. newWithoutAllKeys(CharIterable keys)
ImmutableCharShortMap
ImmutableCharShortSingletonMap. 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 class
AbstractMutableCharKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
AbstractMutableCharValuesMap
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected class
AbstractMutableCharValuesMap.AbstractCharValuesCollection
class
ByteCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ByteCharHashMap.ValuesCollection
private class
CharBooleanHashMap.KeySet
private class
CharBooleanHashMap.KeysView
private class
CharByteHashMap.KeySet
private class
CharByteHashMap.KeysView
class
CharCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
CharCharHashMap.KeySet
private class
CharCharHashMap.KeysView
private class
CharCharHashMap.ValuesCollection
private class
CharDoubleHashMap.KeySet
private class
CharDoubleHashMap.KeysView
private class
CharFloatHashMap.KeySet
private class
CharFloatHashMap.KeysView
private class
CharIntHashMap.KeySet
private class
CharIntHashMap.KeysView
private class
CharLongHashMap.KeySet
private class
CharLongHashMap.KeysView
private class
CharObjectHashMap.KeySet
private class
CharObjectHashMap.KeysView
private class
CharShortHashMap.KeySet
private class
CharShortHashMap.KeysView
class
DoubleCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
DoubleCharHashMap.ValuesCollection
class
FloatCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
FloatCharHashMap.ValuesCollection
(package private) class
ImmutableCharCharMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableCharMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgclass
IntCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
IntCharHashMap.ValuesCollection
class
LongCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
LongCharHashMap.ValuesCollection
class
ObjectCharHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
ObjectCharHashMap.ValuesCollection
class
ObjectCharHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
ObjectCharHashMapWithHashingStrategy.ValuesCollection
class
ShortCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ShortCharHashMap.ValuesCollection
class
SynchronizedByteCharMap
A synchronized view of aMutableByteCharMap
.class
SynchronizedCharCharMap
A synchronized view of aMutableCharCharMap
.class
SynchronizedDoubleCharMap
A synchronized view of aMutableDoubleCharMap
.class
SynchronizedFloatCharMap
A synchronized view of aMutableFloatCharMap
.class
SynchronizedIntCharMap
A synchronized view of aMutableIntCharMap
.class
SynchronizedLongCharMap
A synchronized view of aMutableLongCharMap
.class
SynchronizedObjectCharMap<K>
A synchronized view of aMutableObjectCharMap
.class
SynchronizedShortCharMap
A synchronized view of aMutableShortCharMap
.class
UnmodifiableByteCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableCharCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableDoubleCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableFloatCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableIntCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableLongCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableObjectCharMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
UnmodifiableShortCharMap
This 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 boolean
AbstractMutableCharKeySet. addAll(CharIterable source)
boolean
AbstractMutableCharValuesMap.AbstractCharValuesCollection. addAll(CharIterable source)
boolean
ObjectCharHashMap.ValuesCollection. addAll(CharIterable source)
boolean
ObjectCharHashMapWithHashingStrategy.ValuesCollection. addAll(CharIterable source)
boolean
AbstractMutableCharKeySet. containsAll(CharIterable source)
boolean
AbstractMutableCharValuesMap.AbstractCharValuesCollection. containsAll(CharIterable source)
boolean
AbstractMutableCharValuesMap. containsAll(CharIterable source)
boolean
CharBooleanHashMap.KeysView. containsAll(CharIterable source)
boolean
ObjectCharHashMap. containsAll(CharIterable source)
boolean
ObjectCharHashMap.ValuesCollection. containsAll(CharIterable source)
boolean
ObjectCharHashMapWithHashingStrategy. containsAll(CharIterable source)
boolean
ObjectCharHashMapWithHashingStrategy.ValuesCollection. containsAll(CharIterable source)
boolean
SynchronizedByteCharMap. containsAll(CharIterable source)
boolean
SynchronizedCharCharMap. containsAll(CharIterable source)
boolean
SynchronizedDoubleCharMap. containsAll(CharIterable source)
boolean
SynchronizedFloatCharMap. containsAll(CharIterable source)
boolean
SynchronizedIntCharMap. containsAll(CharIterable source)
boolean
SynchronizedLongCharMap. containsAll(CharIterable source)
boolean
SynchronizedObjectCharMap. containsAll(CharIterable source)
boolean
SynchronizedShortCharMap. containsAll(CharIterable source)
boolean
UnmodifiableByteCharMap. containsAll(CharIterable source)
boolean
UnmodifiableCharCharMap. containsAll(CharIterable source)
boolean
UnmodifiableDoubleCharMap. containsAll(CharIterable source)
boolean
UnmodifiableFloatCharMap. containsAll(CharIterable source)
boolean
UnmodifiableIntCharMap. containsAll(CharIterable source)
boolean
UnmodifiableLongCharMap. containsAll(CharIterable source)
boolean
UnmodifiableObjectCharMap. containsAll(CharIterable source)
boolean
UnmodifiableShortCharMap. containsAll(CharIterable source)
boolean
AbstractMutableCharKeySet. removeAll(CharIterable source)
boolean
AbstractMutableCharValuesMap.AbstractCharValuesCollection. removeAll(CharIterable source)
boolean
ObjectCharHashMap.ValuesCollection. removeAll(CharIterable source)
boolean
ObjectCharHashMapWithHashingStrategy.ValuesCollection. removeAll(CharIterable source)
boolean
ByteCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
CharBooleanHashMap.KeySet. retainAll(CharIterable source)
boolean
CharByteHashMap.KeySet. retainAll(CharIterable source)
boolean
CharCharHashMap.KeySet. retainAll(CharIterable source)
boolean
CharCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
CharDoubleHashMap.KeySet. retainAll(CharIterable source)
boolean
CharFloatHashMap.KeySet. retainAll(CharIterable source)
boolean
CharIntHashMap.KeySet. retainAll(CharIterable source)
boolean
CharLongHashMap.KeySet. retainAll(CharIterable source)
boolean
CharObjectHashMap.KeySet. retainAll(CharIterable source)
boolean
CharShortHashMap.KeySet. retainAll(CharIterable source)
boolean
DoubleCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
FloatCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
IntCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
LongCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
ObjectCharHashMap.ValuesCollection. retainAll(CharIterable source)
boolean
ObjectCharHashMapWithHashingStrategy.ValuesCollection. retainAll(CharIterable source)
boolean
ShortCharHashMap.ValuesCollection. retainAll(CharIterable source)
MutableCharSet
AbstractMutableCharKeySet. withAll(CharIterable elements)
MutableCharCollection
AbstractMutableCharValuesMap.AbstractCharValuesCollection. withAll(CharIterable elements)
MutableCharCollection
ObjectCharHashMap.ValuesCollection. withAll(CharIterable elements)
MutableCharCollection
ObjectCharHashMapWithHashingStrategy.ValuesCollection. withAll(CharIterable elements)
MutableCharSet
AbstractMutableCharKeySet. withoutAll(CharIterable elements)
MutableCharCollection
AbstractMutableCharValuesMap.AbstractCharValuesCollection. withoutAll(CharIterable elements)
MutableCharCollection
ObjectCharHashMap.ValuesCollection. withoutAll(CharIterable elements)
MutableCharCollection
ObjectCharHashMapWithHashingStrategy.ValuesCollection. withoutAll(CharIterable elements)
CharBooleanHashMap
CharBooleanHashMap. withoutAllKeys(CharIterable keys)
CharByteHashMap
CharByteHashMap. withoutAllKeys(CharIterable keys)
CharCharHashMap
CharCharHashMap. withoutAllKeys(CharIterable keys)
CharDoubleHashMap
CharDoubleHashMap. withoutAllKeys(CharIterable keys)
CharFloatHashMap
CharFloatHashMap. withoutAllKeys(CharIterable keys)
CharIntHashMap
CharIntHashMap. withoutAllKeys(CharIterable keys)
CharLongHashMap
CharLongHashMap. withoutAllKeys(CharIterable keys)
MutableCharObjectMap<V>
CharObjectHashMap. withoutAllKeys(CharIterable keys)
CharShortHashMap
CharShortHashMap. withoutAllKeys(CharIterable keys)
MutableCharBooleanMap
SynchronizedCharBooleanMap. withoutAllKeys(CharIterable keys)
MutableCharByteMap
SynchronizedCharByteMap. withoutAllKeys(CharIterable keys)
MutableCharCharMap
SynchronizedCharCharMap. withoutAllKeys(CharIterable keys)
MutableCharDoubleMap
SynchronizedCharDoubleMap. withoutAllKeys(CharIterable keys)
MutableCharFloatMap
SynchronizedCharFloatMap. withoutAllKeys(CharIterable keys)
MutableCharIntMap
SynchronizedCharIntMap. withoutAllKeys(CharIterable keys)
MutableCharLongMap
SynchronizedCharLongMap. withoutAllKeys(CharIterable keys)
MutableCharObjectMap<V>
SynchronizedCharObjectMap. withoutAllKeys(CharIterable keys)
MutableCharShortMap
SynchronizedCharShortMap. withoutAllKeys(CharIterable keys)
MutableCharBooleanMap
UnmodifiableCharBooleanMap. withoutAllKeys(CharIterable keys)
MutableCharByteMap
UnmodifiableCharByteMap. withoutAllKeys(CharIterable keys)
MutableCharCharMap
UnmodifiableCharCharMap. withoutAllKeys(CharIterable keys)
MutableCharDoubleMap
UnmodifiableCharDoubleMap. withoutAllKeys(CharIterable keys)
MutableCharFloatMap
UnmodifiableCharFloatMap. withoutAllKeys(CharIterable keys)
MutableCharIntMap
UnmodifiableCharIntMap. withoutAllKeys(CharIterable keys)
MutableCharLongMap
UnmodifiableCharLongMap. withoutAllKeys(CharIterable keys)
MutableCharObjectMap<V>
UnmodifiableCharObjectMap. withoutAllKeys(CharIterable keys)
MutableCharShortMap
UnmodifiableCharShortMap. 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 class
AbstractCharIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
SynchronizedCharIterable
A synchronized view of a CharIterable.Fields in org.eclipse.collections.impl.primitive declared as CharIterable Modifier and Type Field Description private CharIterable
SynchronizedCharIterable. iterable
Methods in org.eclipse.collections.impl.primitive that return CharIterable Modifier and Type Method Description CharIterable
SynchronizedCharIterable. reject(CharPredicate predicate)
CharIterable
SynchronizedCharIterable. 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 boolean
SynchronizedCharIterable. containsAll(CharIterable source)
boolean
SynchronizedCharIterable. containsAny(CharIterable source)
boolean
SynchronizedCharIterable. containsNone(CharIterable source)
static SynchronizedCharIterable
SynchronizedCharIterable. of(CharIterable iterable)
This method will take a CharIterable and wrap it directly in a SynchronizedCharIterable.static SynchronizedCharIterable
SynchronizedCharIterable. 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 class
AbstractImmutableCharSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableCharEmptySet
ImmutableCharEmptySet is an optimization forImmutableCharSet
of size 0.(package private) class
ImmutableCharSingletonSet
ImmutableCharSingletonSet is an optimization forImmutableCharSet
of 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 boolean
ImmutableCharEmptySet. containsAll(CharIterable source)
boolean
ImmutableCharSingletonSet. containsAll(CharIterable source)
ImmutableCharSet
AbstractImmutableCharSet. newWithAll(CharIterable elements)
ImmutableCharSet
ImmutableCharEmptySet. newWithAll(CharIterable elements)
ImmutableCharSet
ImmutableCharSingletonSet. newWithAll(CharIterable elements)
ImmutableCharSet
AbstractImmutableCharSet. newWithoutAll(CharIterable elements)
ImmutableCharSet
ImmutableCharEmptySet. newWithoutAll(CharIterable elements)
ImmutableCharSet
ImmutableCharSingletonSet. newWithoutAll(CharIterable elements)
ImmutableCharSet
ImmutableCharSetFactoryImpl. ofAll(CharIterable items)
ImmutableCharSet
ImmutableCharSetFactoryImpl. 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 class
CharHashSet
This file was automatically generated from template file primitiveHashSet.stg.private static class
CharHashSet.ImmutableCharHashSet
class
SynchronizedCharSet
A synchronized view of aMutableCharSet
.class
UnmodifiableCharSet
This 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 boolean
CharHashSet. addAll(CharIterable source)
static CharHashSet
CharHashSet. newSet(CharIterable source)
MutableCharSet
MutableCharSetFactoryImpl. ofAll(CharIterable items)
boolean
CharHashSet. removeAll(CharIterable source)
boolean
CharHashSet. retainAll(CharIterable source)
CharHashSet
CharHashSet. withAll(CharIterable elements)
MutableCharSet
MutableCharSetFactoryImpl. withAll(CharIterable items)
SynchronizedCharSet
SynchronizedCharSet. withAll(CharIterable elements)
UnmodifiableCharSet
UnmodifiableCharSet. withAll(CharIterable elements)
CharHashSet
CharHashSet. withoutAll(CharIterable elements)
SynchronizedCharSet
SynchronizedCharSet. withoutAll(CharIterable elements)
UnmodifiableCharSet
UnmodifiableCharSet. 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 class
AbstractCharSet
This 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) class
ImmutableCharArrayStack
ImmutableCharArrayStack is the non-modifiable equivalent ofCharArrayStack
.(package private) class
ImmutableCharEmptyStack
ImmutableCharEmptyStack is an optimization forImmutableCharStack
of size 0.(package private) class
ImmutableCharSingletonStack
ImmutableCharSingletonStack is an optimization forImmutableCharStack
of 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 boolean
ImmutableCharEmptyStack. containsAll(CharIterable source)
boolean
ImmutableCharSingletonStack. containsAll(CharIterable source)
static ImmutableCharArrayStack
ImmutableCharArrayStack. newStack(CharIterable iterable)
static ImmutableCharArrayStack
ImmutableCharArrayStack. newStackFromTopToBottom(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. ofAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. ofAllReversed(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. withAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. 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 class
CharArrayStack
CharArrayStack is similar toArrayStack
, and is memory-optimized for char primitives.class
SynchronizedCharStack
A synchronized view of aMutableCharStack
.class
UnmodifiableCharStack
This 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 boolean
SynchronizedCharStack. containsAll(CharIterable source)
boolean
UnmodifiableCharStack. containsAll(CharIterable source)
static CharArrayStack
CharArrayStack. newStack(CharIterable items)
static CharArrayStack
CharArrayStack. newStackFromTopToBottom(CharIterable items)
MutableCharStack
MutableCharStackFactoryImpl. ofAll(CharIterable items)
MutableCharStack
MutableCharStackFactoryImpl. ofAllReversed(CharIterable items)
MutableCharStack
MutableCharStackFactoryImpl. withAll(CharIterable items)
MutableCharStack
MutableCharStackFactoryImpl. 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 class
AbstractCharStack
This 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 boolean
AbstractCharStack. 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 class
CharAdapter
Provides 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 CharAdapter
CharAdapter. from(CharIterable iterable)
CharAdapter
CharAdapter. newWithAll(CharIterable elements)
CharAdapter
CharAdapter. 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 boolean
CharIterableIterate. allSatisfy(CharIterable iterable, CharPredicate predicate)
static boolean
CharIterableIterate. anySatisfy(CharIterable iterable, CharPredicate predicate)
static void
CharIterableIterate. 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 int
CharIterableIterate. count(CharIterable iterable, CharPredicate predicate)
static char
CharIterableIterate. detectIfNone(CharIterable iterable, CharPredicate predicate, char ifNone)
static void
CharIterableIterate. forEach(CharIterable iterable, CharProcedure procedure)
static <T> T
CharIterableIterate. injectInto(CharIterable iterable, T injectedValue, ObjectCharToObjectFunction<? super T,? extends T> function)
static boolean
CharIterableIterate. isEmpty(CharIterable iterable)
static char
CharIterableIterate. max(CharIterable iterable)
static char
CharIterableIterate. maxIfEmpty(CharIterable iterable, char ifEmpty)
static char
CharIterableIterate. min(CharIterable iterable)
static char
CharIterableIterate. minIfEmpty(CharIterable iterable, char ifEmpty)
static boolean
CharIterableIterate. noneSatisfy(CharIterable iterable, CharPredicate predicate)
static boolean
CharIterableIterate. 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.String
CharIterableIterate. stringValueOfItem(CharIterable iterable, T item)
static long
CharIterableIterate. 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 LazyCharIterable
LazyCharIterate. 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 LazyCharIterable
LazyCharIterate. select(CharIterable iterable, CharPredicate predicate)
Creates a deferred filtering char iterable for the specified char iterable.static LazyCharIterable
LazyCharIterate. tap(CharIterable iterable, CharProcedure procedure)
Creates a deferred tap iterable for the specified iterable.
-