Enum Class ViewType

java.lang.Object
java.lang.Enum<ViewType>
com.victorvalentim.zividomelive.ViewType
All Implemented Interfaces:
Serializable, Comparable<ViewType>, Constable

public enum ViewType extends Enum<ViewType>
Selects the final view used by the preview and independent output routes in RenderMode.FULL.

Dedicated render modes temporarily override configured view selections without mutating them.

The built-in Processing UI uses an explicit value mapping; callers must use enum values rather than persisting or exchanging their declaration ordinals.

API stability: Stable.

Since:
2.0.0
  • Enum Constant Details

    • STANDARD

      public static final ViewType STANDARD
      Conventional perspective view, independent from spherical capture.
    • DOMEMASTER

      public static final ViewType DOMEMASTER
      Circular fulldome projection.
    • EQUIRECTANGULAR

      public static final ViewType EQUIRECTANGULAR
      Equirectangular spherical projection.
    • SKYBOX

      public static final ViewType SKYBOX
      Equi-angular cubemap (EAC) cross view for face/orientation inspection.
  • Method Details

    • values

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