public static enum IRecognitionService.ResultStabilityStatus extends java.lang.Enum<IRecognitionService.ResultStabilityStatus>
Enum Constant and Description |
---|
Available
Result Available (matching content found in three or more frames, the result varies with the addition of new frames)
|
NotReady
No content available
|
Stable
Result Stable (the result has been stable in the last three or more frames)
|
Tentative
Tentative Content Detected
|
TentativelyStable
Result Tentatively Stable (the result has been stable in the last two frames)
|
Verified
Content Verified (matching content found in at least two frames)
|
Modifier and Type | Method and Description |
---|---|
static IRecognitionService.ResultStabilityStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IRecognitionService.ResultStabilityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IRecognitionService.ResultStabilityStatus NotReady
public static final IRecognitionService.ResultStabilityStatus Tentative
public static final IRecognitionService.ResultStabilityStatus Verified
public static final IRecognitionService.ResultStabilityStatus Available
public static final IRecognitionService.ResultStabilityStatus TentativelyStable
public static final IRecognitionService.ResultStabilityStatus Stable
public static IRecognitionService.ResultStabilityStatus[] values()
for (IRecognitionService.ResultStabilityStatus c : IRecognitionService.ResultStabilityStatus.values()) System.out.println(c);
public static IRecognitionService.ResultStabilityStatus 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