public static enum FXObservable.Strategy extends Enum<FXObservable.Strategy>
| Enum Constant and Description | 
|---|
PLAIN  | 
PROPERTY_ACCESOR  | 
SHADOW_FIELD  | 
| Modifier and Type | Method and Description | 
|---|---|
static FXObservable.Strategy | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FXObservable.Strategy[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FXObservable.Strategy PLAIN
public static final FXObservable.Strategy SHADOW_FIELD
public static final FXObservable.Strategy PROPERTY_ACCESOR
public static FXObservable.Strategy[] values()
for (FXObservable.Strategy c : FXObservable.Strategy.values()) System.out.println(c);
public static FXObservable.Strategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null