Package io.anyline2.camera
Enum CameraFeatures2.AutoExposureMode
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum CameraFeatures2.AutoExposureMode extends Enum<CameraFeatures2.AutoExposureMode>
Helper enum to be able to get a string representation of the auto exposure modes
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
CameraFeatures2.AutoExposureMode.Companion
-
Field Summary
Fields Modifier and Type Field Description private final String
name
private final Integer
ordinal
private final EnumEntries<CameraFeatures2.AutoExposureMode>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description OFF
ON
ON_AUTO_FLASH
ON_ALWAYS_FLASH
ON_AUTO_FLASH_REDEYE
-
Method Summary
Modifier and Type Method Description String
toString()
final Integer
toCamera2()
final CameraFeatures2.AutoExposureMode
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<CameraFeatures2.AutoExposureMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<CameraFeatures2.AutoExposureMode>
getEntries()
Helper enum to be able to get a string representation of the auto exposure modes -
-
Method Detail
-
valueOf
final CameraFeatures2.AutoExposureMode valueOf(String value)
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.)
-
values
final Array<CameraFeatures2.AutoExposureMode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<CameraFeatures2.AutoExposureMode> getEntries()
Helper enum to be able to get a string representation of the auto exposure modes
-
-
-
-