Package | Description |
---|---|
com.gs.collections.api.bag |
This package contains interfaces for Bag API.
|
com.gs.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
com.gs.collections.api.factory.bag.primitive | |
com.gs.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
com.gs.collections.impl.bag.immutable.primitive |
This package contains implementations of the immutable primitive bag interfaces.
|
com.gs.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
Modifier and Type | Method and Description |
---|---|
ImmutableCharBag |
ImmutableBag.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableCharBag |
ImmutableCharBag.newWith(char element) |
ImmutableCharBag |
ImmutableCharBag.newWithAll(CharIterable elements) |
ImmutableCharBag |
ImmutableCharBag.newWithout(char element) |
ImmutableCharBag |
ImmutableCharBag.newWithoutAll(CharIterable elements) |
ImmutableCharBag |
ImmutableCharBag.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharBag.select(CharPredicate predicate) |
ImmutableCharBag |
MutableCharBag.toImmutable()
Returns an immutable copy of this bag.
|
ImmutableCharBag |
CharBag.toImmutable()
Returns an immutable copy of this bag.
|
Modifier and Type | Method and Description |
---|---|
ImmutableCharBag |
ImmutableCharBagFactory.of()
Same as
ImmutableCharBagFactory.with() . |
ImmutableCharBag |
ImmutableCharBagFactory.of(char... items)
Same as
ImmutableCharBagFactory.with(char[]) . |
ImmutableCharBag |
ImmutableCharBagFactory.of(char one)
Same as
ImmutableCharBagFactory.with(char) . |
ImmutableCharBag |
ImmutableCharBagFactory.ofAll(CharIterable items)
|
ImmutableCharBag |
ImmutableCharBagFactory.with() |
ImmutableCharBag |
ImmutableCharBagFactory.with(char... items) |
ImmutableCharBag |
ImmutableCharBagFactory.with(char one) |
ImmutableCharBag |
ImmutableCharBagFactory.withAll(CharIterable items) |
Modifier and Type | Method and Description |
---|---|
ImmutableCharBag |
AbstractImmutableBag.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableCharBag |
ImmutableCharBagFactoryImpl.of() |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.of(char... items) |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.of(char one) |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.ofAll(CharIterable items) |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.with() |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.with(char... items) |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.with(char one) |
ImmutableCharBag |
ImmutableCharBagFactoryImpl.withAll(CharIterable items) |
Modifier and Type | Method and Description |
---|---|
ImmutableCharBag |
SynchronizedCharBag.toImmutable() |
ImmutableCharBag |
UnmodifiableCharBag.toImmutable() |
ImmutableCharBag |
CharHashBag.toImmutable() |
Copyright © 2004–2017. All rights reserved.