Class UnmodifiableCharBag
- java.lang.Object
-
- org.eclipse.collections.impl.collection.mutable.primitive.AbstractUnmodifiableCharCollection
-
- org.eclipse.collections.impl.bag.mutable.primitive.UnmodifiableCharBag
-
- All Implemented Interfaces:
java.io.Serializable,CharBag,MutableCharBag,CharIterable,MutableCharCollection,PrimitiveIterable
public class UnmodifiableCharBag extends AbstractUnmodifiableCharCollection implements MutableCharBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.- Since:
- 3.1.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description UnmodifiableCharBag(MutableCharBag bag)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddOccurrences(char item, int occurrences)MutableCharBagasSynchronized()MutableCharBagasUnmodifiable()MutableList<CharIntPair>bottomOccurrences(int count)Returns thecountleast frequently occurring items.<V> MutableBag<V>collect(CharToObjectFunction<? extends V> function)Returns a new collection with the results of applying the specified function on each element of the source collection.booleanequals(java.lang.Object otherBag)Follows the same general contract asBag.equals(Object).voidforEachWithOccurrences(CharIntProcedure procedure)For each distinct item, with the number of occurrences, execute the specified procedure.private MutableCharBaggetMutableCharBag()inthashCode()Follows the same general contract asBag.hashCode().MutableCharBagnewEmpty()Creates a new empty mutable version of the same Bag type.intoccurrencesOf(char item)The occurrences of a distinct item in the bag.MutableCharBagreject(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.booleanremoveOccurrences(char item, int occurrences)MutableCharBagselect(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.MutableCharBagselectByOccurrences(IntPredicate predicate)Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableCharSetselectUnique()Returns all elements of the bag that have exactly one occurrence.intsizeDistinct()The size of the Bag when counting only distinct elements.ImmutableCharBagtoImmutable()Returns an immutable copy of this bag.MutableList<CharIntPair>topOccurrences(int count)Returns thecountmost frequently occurring items.UnmodifiableCharBagwith(char element)UnmodifiableCharBagwithAll(CharIterable elements)UnmodifiableCharBagwithout(char element)UnmodifiableCharBagwithoutAll(CharIterable elements)-
Methods inherited from class org.eclipse.collections.impl.collection.mutable.primitive.AbstractUnmodifiableCharCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, asLazy, average, charIterator, chunk, clear, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, getCharCollection, injectInto, isEmpty, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, notEmpty, reduce, reduceIfEmpty, remove, removeAll, removeAll, removeIf, retainAll, retainAll, size, sum, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.bag.primitive.CharBag
toStringOfItemToCount
-
Methods inherited from interface org.eclipse.collections.api.CharIterable
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.bag.primitive.MutableCharBag
selectDuplicates, tap
-
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableCharCollection
add, addAll, addAll, charIterator, clear, remove, removeAll, removeAll, removeIf, retainAll, retainAll
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnmodifiableCharBag
public UnmodifiableCharBag(MutableCharBag bag)
-
-
Method Detail
-
getMutableCharBag
private MutableCharBag getMutableCharBag()
-
with
public UnmodifiableCharBag with(char element)
- Specified by:
within interfaceMutableCharBag- Specified by:
within interfaceMutableCharCollection- Overrides:
within classAbstractUnmodifiableCharCollection
-
without
public UnmodifiableCharBag without(char element)
- Specified by:
withoutin interfaceMutableCharBag- Specified by:
withoutin interfaceMutableCharCollection- Overrides:
withoutin classAbstractUnmodifiableCharCollection
-
withAll
public UnmodifiableCharBag withAll(CharIterable elements)
- Specified by:
withAllin interfaceMutableCharBag- Specified by:
withAllin interfaceMutableCharCollection- Overrides:
withAllin classAbstractUnmodifiableCharCollection
-
withoutAll
public UnmodifiableCharBag withoutAll(CharIterable elements)
- Specified by:
withoutAllin interfaceMutableCharBag- Specified by:
withoutAllin interfaceMutableCharCollection- Overrides:
withoutAllin classAbstractUnmodifiableCharCollection
-
addOccurrences
public void addOccurrences(char item, int occurrences)- Specified by:
addOccurrencesin interfaceMutableCharBag
-
removeOccurrences
public boolean removeOccurrences(char item, int occurrences)- Specified by:
removeOccurrencesin interfaceMutableCharBag
-
sizeDistinct
public int sizeDistinct()
Description copied from interface:CharBagThe size of the Bag when counting only distinct elements.- Specified by:
sizeDistinctin interfaceCharBag
-
occurrencesOf
public int occurrencesOf(char item)
Description copied from interface:CharBagThe occurrences of a distinct item in the bag.- Specified by:
occurrencesOfin interfaceCharBag
-
forEachWithOccurrences
public void forEachWithOccurrences(CharIntProcedure procedure)
Description copied from interface:CharBagFor each distinct item, with the number of occurrences, execute the specified procedure.- Specified by:
forEachWithOccurrencesin interfaceCharBag
-
selectByOccurrences
public MutableCharBag selectByOccurrences(IntPredicate predicate)
Description copied from interface:MutableCharBagReturns all elements of the bag that have a number of occurrences that satisfy the predicate.- Specified by:
selectByOccurrencesin interfaceCharBag- Specified by:
selectByOccurrencesin interfaceMutableCharBag
-
selectUnique
public MutableCharSet selectUnique()
Description copied from interface:MutableCharBagReturns all elements of the bag that have exactly one occurrence.- Specified by:
selectUniquein interfaceCharBag- Specified by:
selectUniquein interfaceMutableCharBag
-
topOccurrences
public MutableList<CharIntPair> topOccurrences(int count)
Description copied from interface:MutableCharBagReturns thecountmost frequently occurring items. In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last item will be returned.- Specified by:
topOccurrencesin interfaceCharBag- Specified by:
topOccurrencesin interfaceMutableCharBag
-
bottomOccurrences
public MutableList<CharIntPair> bottomOccurrences(int count)
Description copied from interface:MutableCharBagReturns thecountleast frequently occurring items. In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last item will be returned.- Specified by:
bottomOccurrencesin interfaceCharBag- Specified by:
bottomOccurrencesin interfaceMutableCharBag
-
select
public MutableCharBag select(CharPredicate predicate)
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.- Specified by:
selectin interfaceCharBag- Specified by:
selectin interfaceCharIterable- Specified by:
selectin interfaceMutableCharBag- Specified by:
selectin interfaceMutableCharCollection- Overrides:
selectin classAbstractUnmodifiableCharCollection
-
reject
public MutableCharBag reject(CharPredicate predicate)
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.- Specified by:
rejectin interfaceCharBag- Specified by:
rejectin interfaceCharIterable- Specified by:
rejectin interfaceMutableCharBag- Specified by:
rejectin interfaceMutableCharCollection- Overrides:
rejectin classAbstractUnmodifiableCharCollection
-
collect
public <V> MutableBag<V> collect(CharToObjectFunction<? extends V> function)
Description copied from interface:CharIterableReturns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collectin interfaceCharBag- Specified by:
collectin interfaceCharIterable- Specified by:
collectin interfaceMutableCharBag- Specified by:
collectin interfaceMutableCharCollection- Overrides:
collectin classAbstractUnmodifiableCharCollection
-
equals
public boolean equals(java.lang.Object otherBag)
Description copied from interface:CharBagFollows the same general contract asBag.equals(Object).
-
hashCode
public int hashCode()
Description copied from interface:CharBagFollows the same general contract asBag.hashCode().
-
asUnmodifiable
public MutableCharBag asUnmodifiable()
- Specified by:
asUnmodifiablein interfaceMutableCharBag- Specified by:
asUnmodifiablein interfaceMutableCharCollection- Overrides:
asUnmodifiablein classAbstractUnmodifiableCharCollection
-
asSynchronized
public MutableCharBag asSynchronized()
- Specified by:
asSynchronizedin interfaceMutableCharBag- Specified by:
asSynchronizedin interfaceMutableCharCollection- Overrides:
asSynchronizedin classAbstractUnmodifiableCharCollection
-
toImmutable
public ImmutableCharBag toImmutable()
Description copied from interface:MutableCharBagReturns an immutable copy of this bag.- Specified by:
toImmutablein interfaceCharBag- Specified by:
toImmutablein interfaceMutableCharBag- Specified by:
toImmutablein interfaceMutableCharCollection- Overrides:
toImmutablein classAbstractUnmodifiableCharCollection
-
newEmpty
public MutableCharBag newEmpty()
Description copied from interface:MutableCharBagCreates a new empty mutable version of the same Bag type.- Specified by:
newEmptyin interfaceMutableCharBag- Specified by:
newEmptyin interfaceMutableCharCollection- Since:
- 9.2.
-
-