Enum CapturePhotoQualityPrioritization
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum CapturePhotoQualityPrioritization extends Enum<CapturePhotoQualityPrioritization>
Determines the prioritization of still image quality and capturing speed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
CapturePhotoQualityPrioritization.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description SPEED
Captures a still image at the highest possible speed. The quality of the image may be degraded.
BALANCED
Balances capturing speed and image quality equally. This is the default value.
QUALITY
Captures a still image with the best possible quality in terms of noise, frozen motion and detail in low light. The speed of the capturing might be reduced.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final CapturePhotoQualityPrioritization
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<CapturePhotoQualityPrioritization>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final CapturePhotoQualityPrioritization 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<CapturePhotoQualityPrioritization> 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.
-
-
-
-