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

| Modifier and Type | Method and Description |
|---|---|
static <T> java.lang.Iterable<T> |
next(NbpObservable<? extends T> items)
Returns an
Iterable that blocks until the Observable emits another item, then returns
that item. |
static NbpBlockingOperatorNext |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NbpBlockingOperatorNext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static NbpBlockingOperatorNext[] values()
for (NbpBlockingOperatorNext c : NbpBlockingOperatorNext.values()) System.out.println(c);
public static NbpBlockingOperatorNext 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(NbpObservable<? 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