Enum Class StereoEye

java.lang.Object
java.lang.Enum<StereoEye>
eu.svjatoslav.sixth.e3d.gui.StereoEye
All Implemented Interfaces:
Serializable, Comparable<StereoEye>, Constable

public enum StereoEye extends Enum<StereoEye>
Identifies which eye is being rendered in stereoscopic mode.
See Also:
  • Enum Constant Details

    • NONE

      public static final StereoEye NONE
      Normal single-view rendering (no stereo).
    • LEFT

      public static final StereoEye LEFT
      Left eye view in side-by-side stereo mode.
  • Method Details

    • values

      public static StereoEye[] 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

      public static StereoEye valueOf(String name)
      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 name
      NullPointerException - if the argument is null