public enum JavaFxSubscriber extends java.lang.Enum<JavaFxSubscriber>
| Modifier and Type | Method and Description |
|---|---|
static <T> javafx.beans.binding.Binding<T> |
toBinding(rx.Observable<T> obs)
Turns an Observable into a JavaFX Binding.
|
static <T> javafx.beans.binding.Binding<T> |
toBinding(rx.Observable<T> obs,
rx.functions.Action1<java.lang.Throwable> onErrorAction)
Turns an Observable into a JavaFX Binding.
|
static JavaFxSubscriber |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavaFxSubscriber[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static JavaFxSubscriber[] values()
for (JavaFxSubscriber c : JavaFxSubscriber.values()) System.out.println(c);
public static JavaFxSubscriber 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> javafx.beans.binding.Binding<T> toBinding(rx.Observable<T> obs)
public static <T> javafx.beans.binding.Binding<T> toBinding(rx.Observable<T> obs,
rx.functions.Action1<java.lang.Throwable> onErrorAction)