public enum ViewPositionMode extends Enum<ViewPositionMode>
ViewBoundMode
allows to apply a restriction on the degree of freedom that is
let on the View control.Enum Constant and Description |
---|
FREE
No enforcement of view point: let the user freely turn around the scene.
|
PROFILE
Enforce view point on profile of the scene.
|
TOP
Enforce view point on top of the scene.
|
Modifier and Type | Method and Description |
---|---|
static ViewPositionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewPositionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewPositionMode TOP
public static final ViewPositionMode PROFILE
public static final ViewPositionMode FREE
public static ViewPositionMode[] values()
for (ViewPositionMode c : ViewPositionMode.values()) System.out.println(c);
public static ViewPositionMode 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.