public static enum GKFaces.Template.Quality extends java.lang.Enum<GKFaces.Template.Quality>
| Enum Constant and Description |
|---|
BAD_DATA
The source data could not be used to create a Template.
|
BLURRY
The image was not sharp enough to extract a Template.
|
NO_FACE
A face was not found within the captured image.
|
OK
The Template was successfully created.
|
| Modifier and Type | Method and Description |
|---|---|
static GKFaces.Template.Quality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GKFaces.Template.Quality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GKFaces.Template.Quality OK
public static final GKFaces.Template.Quality BLURRY
public static final GKFaces.Template.Quality NO_FACE
public static final GKFaces.Template.Quality BAD_DATA
public static GKFaces.Template.Quality[] values()
for (GKFaces.Template.Quality c : GKFaces.Template.Quality.values()) System.out.println(c);
public static GKFaces.Template.Quality 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