Enum 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 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
      • INITIALIZING_LIVENESS_DETECTION

        public static final VerIDFactory.Task INITIALIZING_LIVENESS_DETECTION
    • 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 name
        java.lang.NullPointerException - if the argument is null