@@ -1339,7 +1339,7 @@ public final static <T> Observable<T> from(T t1) {
1339
1339
* the type of these items
1340
1340
* @return an Observable that emits each item
1341
1341
* @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
1343
1343
*/
1344
1344
@Deprecated
1345
1345
// 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) {
1367
1367
* the type of these items
1368
1368
* @return an Observable that emits each item
1369
1369
* @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
1371
1371
*/
1372
1372
@Deprecated
1373
1373
// 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) {
1397
1397
* the type of these items
1398
1398
* @return an Observable that emits each item
1399
1399
* @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
1401
1401
*/
1402
1402
@Deprecated
1403
1403
// 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) {
1429
1429
* the type of these items
1430
1430
* @return an Observable that emits each item
1431
1431
* @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
1433
1433
*/
1434
1434
@Deprecated
1435
1435
// 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) {
1463
1463
* the type of these items
1464
1464
* @return an Observable that emits each item
1465
1465
* @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
1467
1467
*/
1468
1468
@Deprecated
1469
1469
// 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) {
1499
1499
* the type of these items
1500
1500
* @return an Observable that emits each item
1501
1501
* @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
1503
1503
*/
1504
1504
@Deprecated
1505
1505
// 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
1537
1537
* the type of these items
1538
1538
* @return an Observable that emits each item
1539
1539
* @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
1541
1541
*/
1542
1542
@Deprecated
1543
1543
// 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
1577
1577
* the type of these items
1578
1578
* @return an Observable that emits each item
1579
1579
* @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
1581
1581
*/
1582
1582
@Deprecated
1583
1583
// 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
1619
1619
* the type of these items
1620
1620
* @return an Observable that emits each item
1621
1621
* @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
1623
1623
*/
1624
1624
@Deprecated
1625
1625
// 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
1637
1637
* <dd>{@code from} does not operate by default on a particular {@link Scheduler}.</dd>
1638
1638
* </dl>
1639
1639
*
1640
- * @param t1
1640
+ * @param array
1641
1641
* the source Array
1642
1642
* @param <T>
1643
1643
* 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) {
1750
1750
/**
1751
1751
* Converts two items into an Observable that emits those items.
1752
1752
* <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="">
1754
1754
* <dl>
1755
1755
* <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>
1757
1757
* </dl>
1758
1758
*
1759
1759
* @param t1
@@ -1763,7 +1763,7 @@ public final static <T> Observable<T> just(final T value) {
1763
1763
* @param <T>
1764
1764
* the type of these items
1765
1765
* @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>
1767
1767
*/
1768
1768
// suppress unchecked because we are using varargs inside the method
1769
1769
@SuppressWarnings("unchecked")
@@ -1774,10 +1774,10 @@ public final static <T> Observable<T> just(T t1, T t2) {
1774
1774
/**
1775
1775
* Converts three items into an Observable that emits those items.
1776
1776
* <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="">
1778
1778
* <dl>
1779
1779
* <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>
1781
1781
* </dl>
1782
1782
*
1783
1783
* @param t1
@@ -1789,7 +1789,7 @@ public final static <T> Observable<T> just(T t1, T t2) {
1789
1789
* @param <T>
1790
1790
* the type of these items
1791
1791
* @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>
1793
1793
*/
1794
1794
// suppress unchecked because we are using varargs inside the method
1795
1795
@SuppressWarnings("unchecked")
@@ -1800,10 +1800,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3) {
1800
1800
/**
1801
1801
* Converts four items into an Observable that emits those items.
1802
1802
* <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="">
1804
1804
* <dl>
1805
1805
* <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>
1807
1807
* </dl>
1808
1808
*
1809
1809
* @param t1
@@ -1817,7 +1817,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3) {
1817
1817
* @param <T>
1818
1818
* the type of these items
1819
1819
* @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>
1821
1821
*/
1822
1822
// suppress unchecked because we are using varargs inside the method
1823
1823
@SuppressWarnings("unchecked")
@@ -1828,10 +1828,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4) {
1828
1828
/**
1829
1829
* Converts five items into an Observable that emits those items.
1830
1830
* <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="">
1832
1832
* <dl>
1833
1833
* <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>
1835
1835
* </dl>
1836
1836
*
1837
1837
* @param t1
@@ -1847,7 +1847,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4) {
1847
1847
* @param <T>
1848
1848
* the type of these items
1849
1849
* @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>
1851
1851
*/
1852
1852
// suppress unchecked because we are using varargs inside the method
1853
1853
@SuppressWarnings("unchecked")
@@ -1858,10 +1858,10 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5) {
1858
1858
/**
1859
1859
* Converts six items into an Observable that emits those items.
1860
1860
* <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="">
1862
1862
* <dl>
1863
1863
* <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>
1865
1865
* </dl>
1866
1866
*
1867
1867
* @param t1
@@ -1879,7 +1879,7 @@ public final static <T> Observable<T> just(T t1, T t2, T t3, T t4, T t5) {
1879
1879
* @param <T>
1880
1880
* the type of these items
1881
1881
* @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>
1883
1883
*/
1884
1884
// suppress unchecked because we are using varargs inside the method
1885
1885
@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) {
1890
1890
/**
1891
1891
* Converts seven items into an Observable that emits those items.
1892
1892
* <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="">
1894
1894
* <dl>
1895
1895
* <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>
1897
1897
* </dl>
1898
1898
*
1899
1899
* @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) {
1913
1913
* @param <T>
1914
1914
* the type of these items
1915
1915
* @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>
1917
1917
*/
1918
1918
// suppress unchecked because we are using varargs inside the method
1919
1919
@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
1924
1924
/**
1925
1925
* Converts eight items into an Observable that emits those items.
1926
1926
* <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="">
1928
1928
* <dl>
1929
1929
* <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>
1931
1931
* </dl>
1932
1932
*
1933
1933
* @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
1949
1949
* @param <T>
1950
1950
* the type of these items
1951
1951
* @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>
1953
1953
*/
1954
1954
// suppress unchecked because we are using varargs inside the method
1955
1955
@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
1960
1960
/**
1961
1961
* Converts nine items into an Observable that emits those items.
1962
1962
* <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="">
1964
1964
* <dl>
1965
1965
* <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>
1967
1967
* </dl>
1968
1968
*
1969
1969
* @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
1987
1987
* @param <T>
1988
1988
* the type of these items
1989
1989
* @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>
1991
1991
*/
1992
1992
// suppress unchecked because we are using varargs inside the method
1993
1993
@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
1998
1998
/**
1999
1999
* Converts ten items into an Observable that emits those items.
2000
2000
* <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="">
2002
2002
* <dl>
2003
2003
* <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>
2005
2005
* </dl>
2006
2006
*
2007
2007
* @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
2027
2027
* @param <T>
2028
2028
* the type of these items
2029
2029
* @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>
2031
2031
*/
2032
2032
// suppress unchecked because we are using varargs inside the method
2033
2033
@SuppressWarnings("unchecked")
0 commit comments