Package com.appliedrec.verid.core2
Enum VerIDFactory.Task
- java.lang.Object
-
- java.lang.Enum<VerIDFactory.Task>
-
- com.appliedrec.verid.core2.VerIDFactory.Task
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VerIDFactory.Task>
- Enclosing class:
- VerIDFactory
public static enum VerIDFactory.Task extends java.lang.Enum<VerIDFactory.Task>
Ver-ID creation task- Since:
- 2.10.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKING_FOR_INCOMPATIBLE_FACES
CHECKING_LICENCE
CREATING_USER_MANAGEMENT
GETTING_REQUIRED_FACE_TEMPLATE_VERSIONS
INITIALIZING_LIVENESS_DETECTION
LOADING_RESOURCES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerIDFactory.Task
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VerIDFactory.Task[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATING_USER_MANAGEMENT
public static final VerIDFactory.Task CREATING_USER_MANAGEMENT
-
CHECKING_FOR_INCOMPATIBLE_FACES
public static final VerIDFactory.Task CHECKING_FOR_INCOMPATIBLE_FACES
-
GETTING_REQUIRED_FACE_TEMPLATE_VERSIONS
public static final VerIDFactory.Task GETTING_REQUIRED_FACE_TEMPLATE_VERSIONS
-
LOADING_RESOURCES
public static final VerIDFactory.Task LOADING_RESOURCES
-
INITIALIZING_LIVENESS_DETECTION
public static final VerIDFactory.Task INITIALIZING_LIVENESS_DETECTION
-
CHECKING_LICENCE
public static final VerIDFactory.Task CHECKING_LICENCE
-
-
Method Detail
-
values
public static VerIDFactory.Task[] 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 (VerIDFactory.Task c : VerIDFactory.Task.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerIDFactory.Task 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
-
-