Package gaia.cu9.ari.gaiaorbit.util
Enum GlobalConf.ProgramConf.StereoProfile
- java.lang.Object
-
- java.lang.Enum<GlobalConf.ProgramConf.StereoProfile>
-
- gaia.cu9.ari.gaiaorbit.util.GlobalConf.ProgramConf.StereoProfile
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GlobalConf.ProgramConf.StereoProfile>
- Enclosing class:
- GlobalConf.ProgramConf
public static enum GlobalConf.ProgramConf.StereoProfile extends java.lang.Enum<GlobalConf.ProgramConf.StereoProfile>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANAGLYPHIC
Red-cyan anaglyphic 3D modeCROSSEYE
Left image -> right eye, no distortionHD_3DTV_HORIZONTAL
Left image -> left eye, distortionHD_3DTV_VERTICAL
Top-bottomPARALLEL_VIEW
Left image -> left eye, no distortionVR_HEADSET
Left image -> left eye, distortion
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
correctAspect()
boolean
isAnaglyphic()
boolean
isHorizontal()
boolean
isVertical()
static GlobalConf.ProgramConf.StereoProfile
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GlobalConf.ProgramConf.StereoProfile[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VR_HEADSET
public static final GlobalConf.ProgramConf.StereoProfile VR_HEADSET
Left image -> left eye, distortion
-
HD_3DTV_HORIZONTAL
public static final GlobalConf.ProgramConf.StereoProfile HD_3DTV_HORIZONTAL
Left image -> left eye, distortion
-
HD_3DTV_VERTICAL
public static final GlobalConf.ProgramConf.StereoProfile HD_3DTV_VERTICAL
Top-bottom
-
CROSSEYE
public static final GlobalConf.ProgramConf.StereoProfile CROSSEYE
Left image -> right eye, no distortion
-
PARALLEL_VIEW
public static final GlobalConf.ProgramConf.StereoProfile PARALLEL_VIEW
Left image -> left eye, no distortion
-
ANAGLYPHIC
public static final GlobalConf.ProgramConf.StereoProfile ANAGLYPHIC
Red-cyan anaglyphic 3D mode
-
-
Method Detail
-
values
public static GlobalConf.ProgramConf.StereoProfile[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GlobalConf.ProgramConf.StereoProfile c : GlobalConf.ProgramConf.StereoProfile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GlobalConf.ProgramConf.StereoProfile valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
isHorizontal
public boolean isHorizontal()
-
isVertical
public boolean isVertical()
-
isAnaglyphic
public boolean isAnaglyphic()
-
correctAspect
public boolean correctAspect()
-
-