public enum BlockingOperatorNext extends java.lang.Enum<BlockingOperatorNext>

| Modifier and Type | Method and Description |
|---|---|
static <T> java.lang.Iterable<T> |
next(org.reactivestreams.Publisher<? extends T> items)
Returns an
Iterable that blocks until the Observable emits another item, then returns
that item. |
static BlockingOperatorNext |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockingOperatorNext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static BlockingOperatorNext[] values()
for (BlockingOperatorNext c : BlockingOperatorNext.values()) System.out.println(c);
public static BlockingOperatorNext valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static <T> java.lang.Iterable<T> next(org.reactivestreams.Publisher<? extends T> items)
Iterable that blocks until the Observable emits another item, then returns
that item.T - the value typeitems - the Observable to observeIterable that behaves like a blocking version of items