Dependencies
Declarations
-
org
-
eclipse
-
collections
-
impl
-
AbstractRichIterable
-
contains(Object): boolean
-
containsAllIterable(Iterable<Object>): boolean
-
containsAllArguments(Object[]): boolean
-
toArray(): Object[]
-
toArray(Object[]): Object[]
-
isEmpty(): boolean
-
toList(): MutableList<Object>
-
toSortedListBy(Function<Object, Comparable>): MutableList<Object>
-
toSortedSet(): MutableSortedSet<Object>
-
toSortedSet(Comparator<Object>): MutableSortedSet<Object>
-
toSortedSetBy(Function<Object, Comparable>): MutableSortedSet<Object>
-
toSet(): MutableSet<Object>
-
toBag(): MutableBag<Object>
-
toSortedBag(): MutableSortedBag<Object>
-
toSortedBag(Comparator<Object>): MutableSortedBag<Object>
-
toSortedBagBy(Function<Object, Comparable>): MutableSortedBag<Object>
-
toMap(Function<Object, Object>, Function<Object, Object>): MutableMap<Object, Object>
-
toSortedMap(Function<Object, Object>, Function<Object, Object>): MutableSortedMap<Object, Object>
-
toSortedMap(Comparator<Object>, Function<Object, Object>, Function<Object, Object>): MutableSortedMap<Object, Object>
-
toSortedMapBy(Function<Object, Comparable>, Function<Object, Object>, Function<Object, Object>): MutableSortedMap<Object, Object>
-
toBiMap(Function<Object, Object>, Function<Object, Object>): MutableBiMap<Object, Object>
-
select(Predicate<Object>, Collection): Collection
-
selectWith(Predicate2<Object, Object>, Object, Collection): Collection
-
reject(Predicate<Object>, Collection): Collection
-
rejectWith(Predicate2<Object, Object>, Object, Collection): Collection
-
collect(Function<Object, Object>, Collection): Collection
-
injectInto(Object, Function2<Object, Object, Object>): Object
-
collectWith(Function2<Object, Object, Object>, Object, Collection): Collection
-
collectIf(Predicate<Object>, Function<Object, Object>, Collection): Collection
-
detectWithIfNone(Predicate2<Object, Object>, Object, Function0<Object>): Object
-
min(Comparator<Object>): Object
-
max(Comparator<Object>): Object
-
min(): Object
-
max(): Object
-
minBy(Function<Object, Comparable>): Object
-
maxBy(Function<Object, Comparable>): Object
-
asLazy(): LazyIterable<Object>
-
flatCollect(Function<Object, Iterable>, Collection): Collection
-
detect(Predicate<Object>): Object
-
detectWith(Predicate2<Object, Object>, Object): Object
-
detectOptional(Predicate<Object>): Optional<Object>
-
detectWithOptional(Predicate2<Object, Object>, Object): Optional<Object>
-
anySatisfy(Predicate<Object>): boolean
-
allSatisfy(Predicate<Object>): boolean
-
noneSatisfy(Predicate<Object>): boolean
-
anySatisfyWith(Predicate2<Object, Object>, Object): boolean
-
allSatisfyWith(Predicate2<Object, Object>, Object): boolean
-
noneSatisfyWith(Predicate2<Object, Object>, Object): boolean
-
count(Predicate<Object>): int
-
countWith(Predicate2<Object, Object>, Object): int
-
injectInto(int, IntObjectToIntFunction<Object>): int
-
injectInto(long, LongObjectToLongFunction<Object>): long
-
injectInto(double, DoubleObjectToDoubleFunction<Object>): double
-
into(Collection): Collection
-
injectInto(float, FloatObjectToFloatFunction<Object>): float
-
sumOfInt(IntFunction<Object>): long
-
sumOfFloat(FloatFunction<Object>): double
-
sumOfLong(LongFunction<Object>): long
-
sumOfDouble(DoubleFunction<Object>): double
-
forEachWithIndex(ObjectIntProcedure<Object>): void
-
forEach(Procedure<Object>): void
-
forEachWith(Procedure2<Object, Object>, Object): void
-
zip(Iterable<Object>, Collection): Collection
-
zipWithIndex(Collection): Collection
-
toString(): String
-
appendString(Appendable, String): void
-
appendString(Appendable, String, String, String): void
-
containsAll(Collection<Object>): boolean
-
collectBoolean(BooleanFunction<Object>, MutableBooleanCollection): MutableBooleanCollection
-
collectByte(ByteFunction<Object>, MutableByteCollection): MutableByteCollection
-
collectChar(CharFunction<Object>, MutableCharCollection): MutableCharCollection
-
collectDouble(DoubleFunction<Object>, MutableDoubleCollection): MutableDoubleCollection
-
collectFloat(FloatFunction<Object>, MutableFloatCollection): MutableFloatCollection
-
collectInt(IntFunction<Object>, MutableIntCollection): MutableIntCollection
-
collectLong(LongFunction<Object>, MutableLongCollection): MutableLongCollection
-
collectShort(ShortFunction<Object>, MutableShortCollection): MutableShortCollection
-
countByEach(Function<Object, Iterable>): Bag<Object>
-
groupBy(Function<Object, Object>, MutableMultimap): MutableMultimap
-
groupByEach(Function<Object, Iterable>, MutableMultimap): MutableMultimap
-
groupByUniqueKey(Function<Object, Object>, MutableMapIterable): MutableMapIterable
-
Counter
-
EmptyIterator
-
SpreadFunctions
-
SynchronizedRichIterable
-
UnmodifiableIteratorAdapter
-
UnmodifiableMap
-
UnmodifiableRichIterable
-
serialVersionUID: long
-
iterable: RichIterable<Object>
-
UnmodifiableRichIterable(RichIterable<Object>): void
-
of(RichIterable): UnmodifiableRichIterable<Object>
-
select(Predicate<Object>, Collection): Collection
-
selectWith(Predicate2<Object, Object>, Object): RichIterable<Object>
-
selectWith(Predicate2<Object, Object>, Object, Collection): Collection
-
reject(Predicate<Object>, Collection): Collection
-
rejectWith(Predicate2<Object, Object>, Object): RichIterable<Object>
-
rejectWith(Predicate2<Object, Object>, Object, Collection): Collection
-
partition(Predicate<Object>): PartitionIterable<Object>
-
count(Predicate<Object>): int
-
partitionWith(Predicate2<Object, Object>, Object): PartitionIterable<Object>
-
collect(Function<Object, Object>, Collection): Collection
-
collectWith(Function2<Object, Object, Object>, Object): RichIterable<Object>
-
collectWith(Function2<Object, Object, Object>, Object, Collection): Collection
-
collectIf(Predicate<Object>, Function<Object, Object>, Collection): Collection
-
flatCollect(Function<Object, Iterable>, Collection): Collection
-
contains(Object): boolean
-
containsAllIterable(Iterable<Object>): boolean
-
containsAll(Collection<Object>): boolean
-
containsAllArguments(Object[]): boolean
-
toArray(): Object[]
-
toArray(Object[]): Object[]
-
tap(Procedure<Object>): RichIterable<Object>
-
each(Procedure<Object>): void
-
forEachWithIndex(ObjectIntProcedure<Object>): void
-
forEachWith(Procedure2<Object, Object>, Object): void
-
notEmpty(): boolean
-
isEmpty(): boolean
-
size(): int
-
getFirst(): Object
-
getLast(): Object
-
getOnly(): Object
-
select(Predicate<Object>): RichIterable<Object>
-
reject(Predicate<Object>): RichIterable<Object>
-
selectInstancesOf(Class<Object>): RichIterable<Object>
-
maxBy(Function<Object, Comparable>): Object
-
collect(Function<Object, Object>): RichIterable<Object>
-
collectBoolean(BooleanFunction<Object>): BooleanIterable
-
collectBoolean(BooleanFunction<Object>, MutableBooleanCollection): MutableBooleanCollection
-
flatCollectBoolean(Function<Object, BooleanIterable>, MutableBooleanCollection): MutableBooleanCollection
-
collectByte(ByteFunction<Object>): ByteIterable
-
collectByte(ByteFunction<Object>, MutableByteCollection): MutableByteCollection
-
flatCollectByte(Function<Object, ByteIterable>, MutableByteCollection): MutableByteCollection
-
collectChar(CharFunction<Object>): CharIterable
-
collectChar(CharFunction<Object>, MutableCharCollection): MutableCharCollection
-
flatCollectChar(Function<Object, CharIterable>, MutableCharCollection): MutableCharCollection
-
collectDouble(DoubleFunction<Object>): DoubleIterable
-
collectDouble(DoubleFunction<Object>, MutableDoubleCollection): MutableDoubleCollection
-
flatCollectDouble(Function<Object, DoubleIterable>, MutableDoubleCollection): MutableDoubleCollection
-
collectFloat(FloatFunction<Object>): FloatIterable
-
collectFloat(FloatFunction<Object>, MutableFloatCollection): MutableFloatCollection
-
flatCollectFloat(Function<Object, FloatIterable>, MutableFloatCollection): MutableFloatCollection
-
collectInt(IntFunction<Object>): IntIterable
-
collectInt(IntFunction<Object>, MutableIntCollection): MutableIntCollection
-
flatCollectInt(Function<Object, IntIterable>, MutableIntCollection): MutableIntCollection
-
collectLong(LongFunction<Object>): LongIterable
-
collectLong(LongFunction<Object>, MutableLongCollection): MutableLongCollection
-
flatCollectLong(Function<Object, LongIterable>, MutableLongCollection): MutableLongCollection
-
collectShort(ShortFunction<Object>): ShortIterable
-
collectShort(ShortFunction<Object>, MutableShortCollection): MutableShortCollection
-
flatCollectShort(Function<Object, ShortIterable>, MutableShortCollection): MutableShortCollection
-
flatCollect(Function<Object, Iterable>): RichIterable<Object>
-
collectIf(Predicate<Object>, Function<Object, Object>): RichIterable<Object>
-
detect(Predicate<Object>): Object
-
detectWith(Predicate2<Object, Object>, Object): Object
-
detectOptional(Predicate<Object>): Optional<Object>
-
detectWithOptional(Predicate2<Object, Object>, Object): Optional<Object>
-
detectIfNone(Predicate<Object>, Function0<Object>): Object
-
sumOfDouble(DoubleFunction<Object>): double
-
detectWithIfNone(Predicate2<Object, Object>, Object, Function0<Object>): Object
-
min(Comparator<Object>): Object
-
max(Comparator<Object>): Object
-
min(): Object
-
max(): Object
-
minBy(Function<Object, Comparable>): Object
-
countWith(Predicate2<Object, Object>, Object): int
-
anySatisfy(Predicate<Object>): boolean
-
anySatisfyWith(Predicate2<Object, Object>, Object): boolean
-
allSatisfy(Predicate<Object>): boolean
-
allSatisfyWith(Predicate2<Object, Object>, Object): boolean
-
noneSatisfy(Predicate<Object>): boolean
-
noneSatisfyWith(Predicate2<Object, Object>, Object): boolean
-
injectInto(Object, Function2<Object, Object, Object>): Object
-
injectInto(int, IntObjectToIntFunction<Object>): int
-
injectInto(long, LongObjectToLongFunction<Object>): long
-
injectInto(double, DoubleObjectToDoubleFunction<Object>): double
-
injectInto(float, FloatObjectToFloatFunction<Object>): float
-
sumOfInt(IntFunction<Object>): long
-
sumOfFloat(FloatFunction<Object>): double
-
sumOfLong(LongFunction<Object>): long
-
sumByInt(Function<Object, Object>, IntFunction<Object>): ObjectLongMap<Object>
-
sumByFloat(Function<Object, Object>, FloatFunction<Object>): ObjectDoubleMap<Object>
-
sumByLong(Function<Object, Object>, LongFunction<Object>): ObjectLongMap<Object>
-
sumByDouble(Function<Object, Object>, DoubleFunction<Object>): ObjectDoubleMap<Object>
-
into(Collection): Collection
-
toList(): MutableList<Object>
-
toSortedList(): MutableList<Object>
-
toSortedList(Comparator<Object>): MutableList<Object>
-
toSortedListBy(Function<Object, Comparable>): MutableList<Object>
-
toSortedSet(): MutableSortedSet<Object>
-
toSortedSet(Comparator<Object>): MutableSortedSet<Object>
-
toSortedSetBy(Function<Object, Comparable>): MutableSortedSet<Object>
-
toSet(): MutableSet<Object>
-
toBag(): MutableBag<Object>
-
toSortedBag(): MutableSortedBag<Object>
-
toSortedBag(Comparator<Object>): MutableSortedBag<Object>
-
toSortedBagBy(Function<Object, Comparable>): MutableSortedBag<Object>
-
toMap(Function<Object, Object>, Function<Object, Object>): MutableMap<Object, Object>
-
toMap(Function<Object, Object>, Function<Object, Object>, Map): Map
-
toSortedMap(Function<Object, Object>, Function<Object, Object>): MutableSortedMap<Object, Object>
-
toSortedMap(Comparator<Object>, Function<Object, Object>, Function<Object, Object>): MutableSortedMap<Object, Object>
-
toSortedMapBy(Function<Object, Comparable>, Function<Object, Object>, Function<Object, Object>): MutableSortedMap<Object, Object>
-
toBiMap(Function<Object, Object>, Function<Object, Object>): MutableBiMap<Object, Object>
-
asLazy(): LazyIterable<Object>
-
iterator(): Iterator<Object>
-
toString(): String
-
makeString(): String
-
makeString(String): String
-
makeString(String, String, String): String
-
appendString(Appendable): void
-
appendString(Appendable, String): void
-
appendString(Appendable, String, String, String): void
-
groupBy(Function<Object, Object>): Multimap<Object, Object>
-
groupBy(Function<Object, Object>, MutableMultimap): MutableMultimap
-
groupByEach(Function<Object, Iterable>): Multimap<Object, Object>
-
groupByEach(Function<Object, Iterable>, MutableMultimap): MutableMultimap
-
groupByUniqueKey(Function<Object, Object>): MapIterable<Object, Object>
-
groupByUniqueKey(Function<Object, Object>, MutableMapIterable): MutableMapIterable
-
zip(Iterable<Object>): RichIterable<Pair<Object, Object>>
-
zip(Iterable<Object>, Collection): Collection
-
zipWithIndex(): RichIterable<Pair<Object, Integer>>
-
zipWithIndex(Collection): Collection
-
chunk(int): RichIterable<RichIterable<Object>>
-
aggregateInPlaceBy(Function<Object, Object>, Function0<Object>, Procedure2<Object, Object>): MapIterable<Object, Object>
-
aggregateBy(Function<Object, Object>, Function0<Object>, Function2<Object, Object, Object>): MapIterable<Object, Object>
-
bag
-
bimap
-
block
-
collection
-
collector
-
factory
-
iterator
-
lazy
-
list
-
map
-
multimap
-
parallel
-
partition
-
primitive
-
set
-
stack
-
stream
-
string
-
tuple
-
utility
Java files
Class files