public static enum DetectorResult.DetectionCode extends java.lang.Enum<DetectorResult.DetectionCode>
| Enum Constant and Description |
|---|
FAIL
Indicates detection has failed, i.e.
|
FALLBACK
Indicates object detection has succeeded, but in fallback mode.
|
SUCCESS
Indicates object was detected successfully
|
| Modifier and Type | Method and Description |
|---|---|
static DetectorResult.DetectionCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DetectorResult.DetectionCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetectorResult.DetectionCode FAIL
public static final DetectorResult.DetectionCode FALLBACK
public static final DetectorResult.DetectionCode SUCCESS
public static DetectorResult.DetectionCode[] values()
for (DetectorResult.DetectionCode c : DetectorResult.DetectionCode.values()) System.out.println(c);
public static DetectorResult.DetectionCode 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 null