|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ViewPositionMode> org.jzy3d.plot3d.rendering.view.modes.ViewPositionMode
public enum ViewPositionMode
The ViewBoundMode
allows to apply a restriction on the degree of freedom that is
let on the View control.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
static ViewPositionMode |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ViewPositionMode TOP
public static final ViewPositionMode PROFILE
public static final ViewPositionMode FREE
Method Detail |
---|
public static ViewPositionMode[] values()
for (ViewPositionMode c : ViewPositionMode.values()) System.out.println(c);
public static ViewPositionMode 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |