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. -
-
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.
-