Enum JsonCapturePhotoQualityPrioritization
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum JsonCapturePhotoQualityPrioritization extends Enum<JsonCapturePhotoQualityPrioritization>
The prioritization of still image quality and capturing speed. Has no effect on devices prior to iOS 13.0. iOS only.
-
-
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. iOS only.
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 significantly reduced.
-
Method Summary
Modifier and Type Method Description final JsonCapturePhotoQualityPrioritization
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<JsonCapturePhotoQualityPrioritization>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final JsonCapturePhotoQualityPrioritization 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<JsonCapturePhotoQualityPrioritization> 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.
-
-
-
-