Enum CameraStream.DepthMode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CameraStream.DepthMode>
    Enclosing class:
    CameraStream

    public static enum CameraStream.DepthMode
    extends java.lang.Enum<CameraStream.DepthMode>
    The DepthMode Enum is used to reflect the Session configuration for the DepthMode to decide if the occlusion material should be set and if frame.acquireDepthImage() or frame.acquireRawDepthImage() should be called to get the input data for the depth texture.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DEPTH
      The Session is configured to use the DepthMode AUTOMATIC
      NO_DEPTH
      The Session is not configured to use the Depth-API This is the default value
      RAW_DEPTH
      The Session is configured to use the DepthMode RAW_DEPTH_ONLY
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static CameraStream.DepthMode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static CameraStream.DepthMode[] 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

      • NO_DEPTH

        public static final CameraStream.DepthMode NO_DEPTH
         The Session is not configured to use the Depth-API
        
         This is the default value
         
      • DEPTH

        public static final CameraStream.DepthMode DEPTH
        The Session is configured to use the DepthMode AUTOMATIC
      • RAW_DEPTH

        public static final CameraStream.DepthMode RAW_DEPTH
        The Session is configured to use the DepthMode RAW_DEPTH_ONLY
    • Method Detail

      • values

        public static CameraStream.DepthMode[] 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 (CameraStream.DepthMode c : CameraStream.DepthMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CameraStream.DepthMode 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 name
        java.lang.NullPointerException - if the argument is null