Enum FaceCaptureErrorCode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<FaceCaptureErrorCode>

    public enum FaceCaptureErrorCode
    extends java.lang.Enum<FaceCaptureErrorCode>
    Error codes for the FaceCaptureResponse errors.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static FaceCaptureErrorCode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static FaceCaptureErrorCode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • NOT_INITIALIZED

        public static final FaceCaptureErrorCode NOT_INITIALIZED
        FaceSDK Core is not initialized
      • SESSION_START_FAILED

        public static final FaceCaptureErrorCode SESSION_START_FAILED
        Failed when Core could not start new session
      • CAMERA_NOT_AVAILABLE

        public static final FaceCaptureErrorCode CAMERA_NOT_AVAILABLE
        Device has no available camera.
      • CAMERA_NO_PERMISSION

        public static final FaceCaptureErrorCode CAMERA_NO_PERMISSION
        Application does not have camera permission.
      • IN_PROGRESS_ALREADY

        public static final FaceCaptureErrorCode IN_PROGRESS_ALREADY
        Capture process already in progress
      • CONTEXT_IS_NULL

        public static final FaceCaptureErrorCode CONTEXT_IS_NULL
        Application context is null
    • Method Detail

      • values

        public static FaceCaptureErrorCode[] 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 (FaceCaptureErrorCode c : FaceCaptureErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FaceCaptureErrorCode 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