Enum ActionRequiredFromApplication
- java.lang.Object
-
- java.lang.Enum<ActionRequiredFromApplication>
-
- com.azure.android.ai.vision.faceanalyzer.ActionRequiredFromApplication
-
- All Implemented Interfaces:
Serializable
,Comparable<ActionRequiredFromApplication>
public enum ActionRequiredFromApplication extends Enum<ActionRequiredFromApplication>
The enum ActionRequiredFromApplication.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRIGHTEN_DISPLAY
Brighten display action required from application.DARKEN_DISPLAY
Darken display action required from application.LOCK_EXPOSURE
Lock exposure action required from application.LOCK_FOCUS
Lock focus action required from application.NONE
No action required from application.SHOW_SMILE
Show smile action required from application.STOP_CAMERA
Stop the camera frames coming inUNLOCK_EXPOSURE
Unlock exposure action required from application.UNLOCK_EXPOSURE_AND_FOCUS
Unlock exposure and focus action required from application.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Gets value.static ActionRequiredFromApplication
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActionRequiredFromApplication[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ActionRequiredFromApplication NONE
No action required from application.
-
BRIGHTEN_DISPLAY
public static final ActionRequiredFromApplication BRIGHTEN_DISPLAY
Brighten display action required from application.
-
DARKEN_DISPLAY
public static final ActionRequiredFromApplication DARKEN_DISPLAY
Darken display action required from application.
-
SHOW_SMILE
public static final ActionRequiredFromApplication SHOW_SMILE
Show smile action required from application.
-
LOCK_FOCUS
public static final ActionRequiredFromApplication LOCK_FOCUS
Lock focus action required from application.
-
LOCK_EXPOSURE
public static final ActionRequiredFromApplication LOCK_EXPOSURE
Lock exposure action required from application.
-
UNLOCK_EXPOSURE
public static final ActionRequiredFromApplication UNLOCK_EXPOSURE
Unlock exposure action required from application.
-
UNLOCK_EXPOSURE_AND_FOCUS
public static final ActionRequiredFromApplication UNLOCK_EXPOSURE_AND_FOCUS
Unlock exposure and focus action required from application.
-
STOP_CAMERA
public static final ActionRequiredFromApplication STOP_CAMERA
Stop the camera frames coming in
-
-
Method Detail
-
values
public static ActionRequiredFromApplication[] 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 (ActionRequiredFromApplication c : ActionRequiredFromApplication.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionRequiredFromApplication 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
-
-