public enum ViewBoundMode extends Enum<ViewBoundMode>
| Enum Constant and Description |
|---|
AUTO_FIT
Automatically fits to the scene graph bounds.
|
MANUAL
Fits the view to the manual bounds.
|
| Modifier and Type | Method and Description |
|---|---|
static ViewBoundMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewBoundMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewBoundMode AUTO_FIT
public static final ViewBoundMode MANUAL
public static ViewBoundMode[] values()
for (ViewBoundMode c : ViewBoundMode.values()) System.out.println(c);
public static ViewBoundMode 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 nullCopyright © 2016. All rights reserved.