Enum CameraStream.DepthMode
- java.lang.Object
-
- java.lang.Enum<CameraStream.DepthMode>
-
- com.google.ar.sceneform.rendering.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 theSession
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.
-
-
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.
-
-
-
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
TheSession
is configured to use the DepthMode AUTOMATIC
-
RAW_DEPTH
public static final CameraStream.DepthMode RAW_DEPTH
TheSession
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 namejava.lang.NullPointerException
- if the argument is null
-
-