Enum FeedbackForFace
- java.lang.Object
-
- java.lang.Enum<FeedbackForFace>
-
- com.azure.android.ai.vision.faceanalyzer.FeedbackForFace
-
- All Implemented Interfaces:
Serializable
,Comparable<FeedbackForFace>
public enum FeedbackForFace extends Enum<FeedbackForFace>
The enum FeedbackForFace.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTENTION_NOT_NEEDED
Attention not currently needed feedback for face.CONTINUE_TO_MOVE_CLOSER
Move more closer feedback for face.FACE_NOT_CENTERED
Face not centered feedback for face.LOOK_AT_CAMERA
Look at camera feedback for face.MOVE_BACK
Move back feedback for face.MOVE_CLOSER
Move closer feedback for face.NONE
No feedback for face.REDUCE_MOVEMENT
Reduce movement feedback for face.SMILE
Smile feedback for face.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Gets value.static FeedbackForFace
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeedbackForFace[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final FeedbackForFace NONE
No feedback for face.
-
LOOK_AT_CAMERA
public static final FeedbackForFace LOOK_AT_CAMERA
Look at camera feedback for face.
-
FACE_NOT_CENTERED
public static final FeedbackForFace FACE_NOT_CENTERED
Face not centered feedback for face.
-
MOVE_CLOSER
public static final FeedbackForFace MOVE_CLOSER
Move closer feedback for face.
-
CONTINUE_TO_MOVE_CLOSER
public static final FeedbackForFace CONTINUE_TO_MOVE_CLOSER
Move more closer feedback for face.
-
MOVE_BACK
public static final FeedbackForFace MOVE_BACK
Move back feedback for face.
-
REDUCE_MOVEMENT
public static final FeedbackForFace REDUCE_MOVEMENT
Reduce movement feedback for face.
-
SMILE
public static final FeedbackForFace SMILE
Smile feedback for face.
-
ATTENTION_NOT_NEEDED
public static final FeedbackForFace ATTENTION_NOT_NEEDED
Attention not currently needed feedback for face.
-
-
Method Detail
-
values
public static FeedbackForFace[] 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 (FeedbackForFace c : FeedbackForFace.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeedbackForFace valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
Gets value.- Returns:
- The value
-
-