RxJava

A C F M O R S 

A

averageDouble(Observable<Double>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the average of the Doubles emitted by the source Observable.
averageDouble(Func1<? super T, Double>) - Method in class rx.observables.MathObservable
Returns an Observable that transforms items emitted by the source Observable into Doubles by using a function you provide and then emits the Double average of the complete sequence of transformed values.
averageFloat(Observable<Float>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the average of the Floats emitted by the source Observable.
averageFloat(Func1<? super T, Float>) - Method in class rx.observables.MathObservable
Returns an Observable that transforms items emitted by the source Observable into Floats by using a function you provide and then emits the Float average of the complete sequence of transformed values.
averageInteger(Observable<Integer>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the average of the Integers emitted by the source Observable.
averageInteger(Func1<? super T, Integer>) - Method in class rx.observables.MathObservable
Returns an Observable that transforms items emitted by the source Observable into Integers by using a function you provide and then emits the Integer average of the complete sequence of transformed values.
averageLong(Observable<Long>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the average of the Longs emitted by the source Observable.
averageLong(Func1<? super T, Long>) - Method in class rx.observables.MathObservable
Returns an Observable that transforms items emitted by the source Observable into Longs by using a function you provide and then emits the Long average of the complete sequence of transformed values.

C

call(Subscriber<? super Double>) - Method in class rx.math.operators.OperatorAverageDouble
 
call(Subscriber<? super Float>) - Method in class rx.math.operators.OperatorAverageFloat
 
call(Subscriber<? super Integer>) - Method in class rx.math.operators.OperatorAverageInteger
 
call(Subscriber<? super Long>) - Method in class rx.math.operators.OperatorAverageLong
 

F

from(Observable<T>) - Static method in class rx.observables.MathObservable
 

M

MathObservable<T> - Class in rx.observables
 
max(Observable<T>) - Static method in class rx.math.operators.OperatorMinMax
 
max(Observable<T>, Comparator<? super T>) - Static method in class rx.math.operators.OperatorMinMax
 
max(Observable<T>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the single item emitted by the source Observable with the maximum numeric value.
max(Comparator<? super T>) - Method in class rx.observables.MathObservable
Returns an Observable that emits the maximum item emitted by the source Observable, according to the specified comparator.
maxBy(Observable<T>, Func1<T, R>) - Static method in class rx.math.operators.OperatorMinMax
 
maxBy(Observable<T>, Func1<T, R>, Comparator<? super R>) - Static method in class rx.math.operators.OperatorMinMax
 
min(Observable<T>) - Static method in class rx.math.operators.OperatorMinMax
 
min(Observable<T>, Comparator<? super T>) - Static method in class rx.math.operators.OperatorMinMax
 
min(Observable<T>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the single numerically minimum item emitted by the source Observable.
min(Comparator<? super T>) - Method in class rx.observables.MathObservable
Returns an Observable that emits the minimum item emitted by the source Observable, according to a specified comparator.
minBy(Observable<T>, Func1<T, R>) - Static method in class rx.math.operators.OperatorMinMax
 
minBy(Observable<T>, Func1<T, R>, Comparator<? super R>) - Static method in class rx.math.operators.OperatorMinMax
 

O

OperatorAverageDouble<T> - Class in rx.math.operators
Compute the average by extracting double values from the source via an extractor function.
OperatorAverageDouble(Func1<? super T, Double>) - Constructor for class rx.math.operators.OperatorAverageDouble
 
OperatorAverageFloat<T> - Class in rx.math.operators
Compute the average by extracting float values from the source via an extractor function.
OperatorAverageFloat(Func1<? super T, Float>) - Constructor for class rx.math.operators.OperatorAverageFloat
 
OperatorAverageInteger<T> - Class in rx.math.operators
Compute the average by extracting integer values from the source via an extractor function.
OperatorAverageInteger(Func1<? super T, Integer>) - Constructor for class rx.math.operators.OperatorAverageInteger
 
OperatorAverageLong<T> - Class in rx.math.operators
Compute the average by extracting long values from the source via an extractor function.
OperatorAverageLong(Func1<? super T, Long>) - Constructor for class rx.math.operators.OperatorAverageLong
 
OperatorMinMax - Class in rx.math.operators
Returns the minimum element in an observable sequence.
OperatorSum - Class in rx.math.operators
A few operators for implementing the sum operation.

R

rx.math.operators - package rx.math.operators
 
rx.observables - package rx.observables
 

S

sumAtLeastOneDoubles(Observable<Double>) - Static method in class rx.math.operators.OperatorSum
 
sumAtLeastOneFloats(Observable<Float>) - Static method in class rx.math.operators.OperatorSum
 
sumAtLeastOneIntegers(Observable<Integer>) - Static method in class rx.math.operators.OperatorSum
 
sumAtLeastOneLongs(Observable<Long>) - Static method in class rx.math.operators.OperatorSum
 
sumDouble(Observable<Double>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the sum of all the Doubles emitted by the source Observable.
sumDouble(Func1<? super T, Double>) - Method in class rx.observables.MathObservable
Returns an Observable that extracts a Double from each of the items emitted by the source Observable via a function you specify, and then emits the sum of these Doubles.
sumDoubles(Observable<Double>) - Static method in class rx.math.operators.OperatorSum
 
sumFloat(Observable<Float>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the sum of all the Floats emitted by the source Observable.
sumFloat(Func1<? super T, Float>) - Method in class rx.observables.MathObservable
Returns an Observable that extracts a Float from each of the items emitted by the source Observable via a function you specify, and then emits the sum of these Floats.
sumFloats(Observable<Float>) - Static method in class rx.math.operators.OperatorSum
 
sumInteger(Observable<Integer>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the sum of all the Integers emitted by the source Observable.
sumInteger(Func1<? super T, Integer>) - Method in class rx.observables.MathObservable
Returns an Observable that extracts an Integer from each of the items emitted by the source Observable via a function you specify, and then emits the sum of these Integers.
sumIntegers(Observable<Integer>) - Static method in class rx.math.operators.OperatorSum
 
sumLong(Observable<Long>) - Static method in class rx.observables.MathObservable
Returns an Observable that emits the sum of all the Longs emitted by the source Observable.
sumLong(Func1<? super T, Long>) - Method in class rx.observables.MathObservable
Returns an Observable that extracts a Long from each of the items emitted by the source Observable via a function you specify, and then emits the sum of these Longs.
sumLongs(Observable<Long>) - Static method in class rx.math.operators.OperatorSum
 
A C F M O R S