Skip to content

Commit 8d3e553

Browse files
committed
javadoc enhancements for from(a,b,c...) to just(a,b,c...) switchover
1 parent 4e41693 commit 8d3e553

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,7 +1339,7 @@ public final static <T> Observable<T> from(T t1) {
13391339
* the type of these items
13401340
* @return an Observable that emits each item
13411341
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1342-
* @deprecated Use items instead
1342+
* @deprecated use {@link #just} instead
13431343
*/
13441344
@Deprecated
13451345
// suppress unchecked because we are using varargs inside the method
@@ -1367,7 +1367,7 @@ public final static <T> Observable<T> from(T t1, T t2) {
13671367
* the type of these items
13681368
* @return an Observable that emits each item
13691369
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1370-
* @deprecated Use items instead
1370+
* @deprecated use {@link #just} instead
13711371
*/
13721372
@Deprecated
13731373
// suppress unchecked because we are using varargs inside the method
@@ -1397,7 +1397,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3) {
13971397
* the type of these items
13981398
* @return an Observable that emits each item
13991399
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1400-
* @deprecated Use items instead
1400+
* @deprecated use {@link #just} instead
14011401
*/
14021402
@Deprecated
14031403
// suppress unchecked because we are using varargs inside the method
@@ -1429,7 +1429,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4) {
14291429
* the type of these items
14301430
* @return an Observable that emits each item
14311431
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1432-
* @deprecated Use items instead
1432+
* @deprecated use {@link #just} instead
14331433
*/
14341434
@Deprecated
14351435
// suppress unchecked because we are using varargs inside the method
@@ -1463,7 +1463,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5) {
14631463
* the type of these items
14641464
* @return an Observable that emits each item
14651465
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1466-
* @deprecated Use items instead
1466+
* @deprecated use {@link #just} instead
14671467
*/
14681468
@Deprecated
14691469
// suppress unchecked because we are using varargs inside the method
@@ -1499,7 +1499,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6) {
14991499
* the type of these items
15001500
* @return an Observable that emits each item
15011501
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1502-
* @deprecated Use items instead
1502+
* @deprecated use {@link #just} instead
15031503
*/
15041504
@Deprecated
15051505
// suppress unchecked because we are using varargs inside the method
@@ -1537,7 +1537,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T
15371537
* the type of these items
15381538
* @return an Observable that emits each item
15391539
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1540-
* @deprecated Use items instead
1540+
* @deprecated use {@link #just} instead
15411541
*/
15421542
@Deprecated
15431543
// suppress unchecked because we are using varargs inside the method
@@ -1577,7 +1577,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T
15771577
* the type of these items
15781578
* @return an Observable that emits each item
15791579
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1580-
* @deprecated Use items instead
1580+
* @deprecated use {@link #just} instead
15811581
*/
15821582
@Deprecated
15831583
// suppress unchecked because we are using varargs inside the method
@@ -1619,7 +1619,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T
16191619
* the type of these items
16201620
* @return an Observable that emits each item
16211621
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1622-
* @deprecated Use items instead
1622+
* @deprecated use {@link #just} instead
16231623
*/
16241624
@Deprecated
16251625
// suppress unchecked because we are using varargs inside the method
@@ -1637,7 +1637,7 @@ public final static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T
16371637
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
16381638
* </dl>
16391639
*
1640-
* @param t1
1640+
* @param array
16411641
* the source Array
16421642
* @param <T>
16431643
* the type of items in the Array and the type of items to be emitted by the resulting Observable
@@ -1750,10 +1750,10 @@ public final static <T> Observable<T> just(final T value) {
17501750
/**
17511751
* Converts two items into an Observable that emits those items.
17521752
* <p>
1753-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1753+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
17541754
* <dl>
17551755
* <dt><b>Scheduler:</b></dt>
1756-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1756+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
17571757
* </dl>
17581758
*
17591759
* @param t1
@@ -1763,7 +1763,7 @@ public final static <T> Observable<T> just(final T value) {
17631763
* @param <T>
17641764
* the type of these items
17651765
* @return an Observable that emits each item
1766-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1766+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
17671767
*/
17681768
// suppress unchecked because we are using varargs inside the method
17691769
@SuppressWarnings("unchecked")
@@ -1774,10 +1774,10 @@ public final static <T> Observable<T> just(T t1, T t2) {
17741774
/**
17751775
* Converts three items into an Observable that emits those items.
17761776
* <p>
1777-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1777+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
17781778
* <dl>
17791779
* <dt><b>Scheduler:</b></dt>
1780-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1780+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
17811781
* </dl>
17821782
*
17831783
* @param t1
@@ -1789,7 +1789,7 @@ public final static <T> Observable<T> just(T t1, T t2) {
17891789
* @param <T>
17901790
* the type of these items
17911791
* @return an Observable that emits each item
1792-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1792+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
17931793
*/
17941794
// suppress unchecked because we are using varargs inside the method
17951795
@SuppressWarnings("unchecked")
@@ -1800,10 +1800,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3) {
18001800
/**
18011801
* Converts four items into an Observable that emits those items.
18021802
* <p>
1803-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1803+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
18041804
* <dl>
18051805
* <dt><b>Scheduler:</b></dt>
1806-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1806+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
18071807
* </dl>
18081808
*
18091809
* @param t1
@@ -1817,7 +1817,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3) {
18171817
* @param <T>
18181818
* the type of these items
18191819
* @return an Observable that emits each item
1820-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1820+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
18211821
*/
18221822
// suppress unchecked because we are using varargs inside the method
18231823
@SuppressWarnings("unchecked")
@@ -1828,10 +1828,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4) {
18281828
/**
18291829
* Converts five items into an Observable that emits those items.
18301830
* <p>
1831-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1831+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
18321832
* <dl>
18331833
* <dt><b>Scheduler:</b></dt>
1834-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1834+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
18351835
* </dl>
18361836
*
18371837
* @param t1
@@ -1847,7 +1847,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4) {
18471847
* @param <T>
18481848
* the type of these items
18491849
* @return an Observable that emits each item
1850-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1850+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
18511851
*/
18521852
// suppress unchecked because we are using varargs inside the method
18531853
@SuppressWarnings("unchecked")
@@ -1858,10 +1858,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5) {
18581858
/**
18591859
* Converts six items into an Observable that emits those items.
18601860
* <p>
1861-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1861+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
18621862
* <dl>
18631863
* <dt><b>Scheduler:</b></dt>
1864-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1864+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
18651865
* </dl>
18661866
*
18671867
* @param t1
@@ -1879,7 +1879,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5) {
18791879
* @param <T>
18801880
* the type of these items
18811881
* @return an Observable that emits each item
1882-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1882+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
18831883
*/
18841884
// suppress unchecked because we are using varargs inside the method
18851885
@SuppressWarnings("unchecked")
@@ -1890,10 +1890,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6) {
18901890
/**
18911891
* Converts seven items into an Observable that emits those items.
18921892
* <p>
1893-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1893+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
18941894
* <dl>
18951895
* <dt><b>Scheduler:</b></dt>
1896-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1896+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
18971897
* </dl>
18981898
*
18991899
* @param t1
@@ -1913,7 +1913,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6) {
19131913
* @param <T>
19141914
* the type of these items
19151915
* @return an Observable that emits each item
1916-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1916+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
19171917
*/
19181918
// suppress unchecked because we are using varargs inside the method
19191919
@SuppressWarnings("unchecked")
@@ -1924,10 +1924,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6, T
19241924
/**
19251925
* Converts eight items into an Observable that emits those items.
19261926
* <p>
1927-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1927+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
19281928
* <dl>
19291929
* <dt><b>Scheduler:</b></dt>
1930-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1930+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
19311931
* </dl>
19321932
*
19331933
* @param t1
@@ -1949,7 +1949,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6, T
19491949
* @param <T>
19501950
* the type of these items
19511951
* @return an Observable that emits each item
1952-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1952+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
19531953
*/
19541954
// suppress unchecked because we are using varargs inside the method
19551955
@SuppressWarnings("unchecked")
@@ -1960,10 +1960,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6, T
19601960
/**
19611961
* Converts nine items into an Observable that emits those items.
19621962
* <p>
1963-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
1963+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
19641964
* <dl>
19651965
* <dt><b>Scheduler:</b></dt>
1966-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1966+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
19671967
* </dl>
19681968
*
19691969
* @param t1
@@ -1987,7 +1987,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6, T
19871987
* @param <T>
19881988
* the type of these items
19891989
* @return an Observable that emits each item
1990-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1990+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
19911991
*/
19921992
// suppress unchecked because we are using varargs inside the method
19931993
@SuppressWarnings("unchecked")
@@ -1998,10 +1998,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6, T
19981998
/**
19991999
* Converts ten items into an Observable that emits those items.
20002000
* <p>
2001-
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/from.png" alt="">
2001+
* <img width="640" height="315" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/just.m.png" alt="">
20022002
* <dl>
20032003
* <dt><b>Scheduler:</b></dt>
2004-
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
2004+
* <dd>{@code just} does not operate by default on a particular {@link Scheduler}.</dd>
20052005
* </dl>
20062006
*
20072007
* @param t1
@@ -2027,7 +2027,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5, T t6, T
20272027
* @param <T>
20282028
* the type of these items
20292029
* @return an Observable that emits each item
2030-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
2030+
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava wiki: just</a>
20312031
*/
20322032
// suppress unchecked because we are using varargs inside the method
20332033
@SuppressWarnings("unchecked")

0 commit comments

Comments
 (0)