Package com.regula.facesdk.enums
Enum FaceCaptureErrorCode
- java.lang.Object
-
- java.lang.Enum<FaceCaptureErrorCode>
-
- com.regula.facesdk.enums.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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAMERA_NO_PERMISSION
Application does not have camera permission.CAMERA_NOT_AVAILABLE
Device has no available camera.CANCEL
User cancelled capture face processing.CONTEXT_IS_NULL
Application context is nullIN_PROGRESS_ALREADY
Capture process already in progressNOT_INITIALIZED
FaceSDK Core is not initializedSESSION_START_FAILED
Failed when Core could not start new sessionTIMEOUT
Processing finished by timeout.
-
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.
-
-
-
Enum Constant Detail
-
CANCEL
public static final FaceCaptureErrorCode CANCEL
User cancelled capture face processing.
-
TIMEOUT
public static final FaceCaptureErrorCode TIMEOUT
Processing finished by timeout.
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-