public static final enum

DJICameraSettingsDef.CameraPhotoQuality

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.camera.DJICameraSettingsDef.CameraPhotoQuality

Class Overview

Photo quality of the JPEG image. Higher photo quality results in larger file size. The default value is CameraPhotoQualityExcellent.

Summary

Enum Values
DJICameraSettingsDef.CameraPhotoQuality  Excellent  The photo quality is excellent. 
DJICameraSettingsDef.CameraPhotoQuality  Fine  The photo quality is fine. 
DJICameraSettingsDef.CameraPhotoQuality  Normal  The photo quality is normal. 
DJICameraSettingsDef.CameraPhotoQuality  Unknown  The photo quality is unknown. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraSettingsDef.CameraPhotoQuality find(int value)
Returns the enum constant of this type with the input integer value.
int value()
Returns the real value of an enum value.
static DJICameraSettingsDef.CameraPhotoQuality valueOf(String name)
final static CameraPhotoQuality[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJICameraSettingsDef.CameraPhotoQuality Excellent

The photo quality is excellent.

public static final DJICameraSettingsDef.CameraPhotoQuality Fine

The photo quality is fine.

public static final DJICameraSettingsDef.CameraPhotoQuality Normal

The photo quality is normal.

public static final DJICameraSettingsDef.CameraPhotoQuality Unknown

The photo quality is unknown.

Public Methods

public boolean _equals (int b)

Compares the input integer value with the real value of an enum value.

Parameters
b The input integer value.
Returns
  • boolean The compared result.

public static DJICameraSettingsDef.CameraPhotoQuality find (int value)

Returns the enum constant of this type with the input integer value.

Parameters
value The input integer value
Returns
  • CameraPhotoQualityType The enum constant of this type

public int value ()

Returns the real value of an enum value.

Returns
  • integer The real value.

public static DJICameraSettingsDef.CameraPhotoQuality valueOf (String name)

public static final CameraPhotoQuality[] values ()