public static enum VisionControl.Config extends java.lang.Enum<VisionControl.Config>
Enum Constant and Description |
---|
DEFAULT_CAMERA |
DEPTH_CAMERA_ONLY |
Modifier and Type | Method and Description |
---|---|
static VisionControl.Config |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VisionControl.Config[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisionControl.Config DEFAULT_CAMERA
public static final VisionControl.Config DEPTH_CAMERA_ONLY
public static VisionControl.Config valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static VisionControl.Config[] values()
for (VisionControl.Config c : VisionControl.Config.values()) System.out.println(c);