public enum ViewInsets extends java.lang.Enum<ViewInsets>
| Enum Constant and Description |
|---|
EVENT_EDIT |
GAME_EDIT |
LOOP_EDIT |
| Modifier and Type | Method and Description |
|---|---|
javafx.geometry.Insets |
getInset()
returns insets for border pane area based on area name
|
static ViewInsets |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewInsets[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewInsets GAME_EDIT
public static final ViewInsets EVENT_EDIT
public static final ViewInsets LOOP_EDIT
public static ViewInsets[] values()
for (ViewInsets c : ViewInsets.values()) System.out.println(c);
public static ViewInsets 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 javafx.geometry.Insets getInset()