Package sc.fiji.snt.viewer
Enum Class Viewer3D.ViewMode
- All Implemented Interfaces:
Serializable,Comparable<Viewer3D.ViewMode>,java.lang.constant.Constable
- Enclosing class:
Viewer3D
Presets of a scene's view point.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo enforcement of view point: freely turn around the scene.Enforce an 'overview' (two-point perspective) view point of the scene.Deprecated.Use YZ insteadDeprecated.Use XY insteadEnforce a XY view point of the scene.Enforce a XZ view point of the scene.Enforce a YZ view point of the scene. -
Method Summary
Modifier and TypeMethodDescriptionstatic Viewer3D.ViewModeReturns the enum constant of this class with the specified name.static Viewer3D.ViewMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
XY
Enforce a XY view point of the scene. Rotation(s) are disabled. -
XZ
Enforce a XZ view point of the scene. Rotation(s) are disabled. -
YZ
Enforce a YZ view point of the scene. Rotation(s) are disabled. -
DEFAULT
No enforcement of view point: freely turn around the scene. -
PERSPECTIVE
Enforce an 'overview' (two-point perspective) view point of the scene. -
SIDE
Deprecated.Use YZ instead -
TOP
Deprecated.Use XY instead
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-