Package com.regula.facesdk.enums
Enum ImageQualityGroupName
- java.lang.Object
-
- java.lang.Enum<ImageQualityGroupName>
-
- com.regula.facesdk.enums.ImageQualityGroupName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ImageQualityGroupName>
public enum ImageQualityGroupName extends java.lang.Enum<ImageQualityGroupName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND
EYES_CHARACTERISTICS
FACE_QUALITY
HEAD_OCCLUSION
HEAD_SIZE_AND_POSITION
IMAGE_CHARACTERISTICS
POSE_AND_EXPRESSION
SHADOWS_AND_LIGHTNING
UNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImageQualityGroupName
get(int i)
int
getValue()
static ImageQualityGroupName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ImageQualityGroupName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMAGE_CHARACTERISTICS
public static final ImageQualityGroupName IMAGE_CHARACTERISTICS
-
HEAD_SIZE_AND_POSITION
public static final ImageQualityGroupName HEAD_SIZE_AND_POSITION
-
FACE_QUALITY
public static final ImageQualityGroupName FACE_QUALITY
-
EYES_CHARACTERISTICS
public static final ImageQualityGroupName EYES_CHARACTERISTICS
-
SHADOWS_AND_LIGHTNING
public static final ImageQualityGroupName SHADOWS_AND_LIGHTNING
-
POSE_AND_EXPRESSION
public static final ImageQualityGroupName POSE_AND_EXPRESSION
-
HEAD_OCCLUSION
public static final ImageQualityGroupName HEAD_OCCLUSION
-
BACKGROUND
public static final ImageQualityGroupName BACKGROUND
-
UNKNOWN
public static final ImageQualityGroupName UNKNOWN
-
-
Method Detail
-
values
public static ImageQualityGroupName[] 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 (ImageQualityGroupName c : ImageQualityGroupName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageQualityGroupName 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
-
getValue
public int getValue()
-
get
public static ImageQualityGroupName get(int i)
-
-