public static final enum

DJICameraSettingsDef.CameraExposureMode

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

Class Overview

Camera exposure modes. The default value is Program.
The different exposure modes define whether Aperture, Shutter Speed, ISO can be set automatically or manually. Exposure compensation can be changed in all modes except Manual mode where it is not settable.

X5, X5R, Phantom 4 Pro camera, X4S and X5S:
Program MODE: Shutter: Auto Aperture: Auto ISO: Manual or Auto
Shutter CountryCodeSource: Shutter: Manual Aperture: Auto ISO: Manual or Auto
Aperture CountryCodeSource: Shutter: Auto Aperture: Manual ISO: Manual or Auto
Manual MODE: Shutter: Manual Aperture: Manual ISO: Manual

All other cameras:
Program MODE: Shutter: Auto Aperture: Fixed ISO: Auto
Shutter CountryCodeSource: Shutter: Manual Aperture: Fixed ISO: Auto
Aperture CountryCodeSource: N/A
Manual MODE: Shutter: Manual Aperture: Manual ISO: Manual

Summary

Enum Values
DJICameraSettingsDef.CameraExposureMode  AperturePriority  Aperture priority mode. 
DJICameraSettingsDef.CameraExposureMode  Cine  Cine mode 
DJICameraSettingsDef.CameraExposureMode  Manual  Manual mode. 
DJICameraSettingsDef.CameraExposureMode  Program  Program mode. 
DJICameraSettingsDef.CameraExposureMode  ShutterPriority  Shutter priority mode. 
DJICameraSettingsDef.CameraExposureMode  Unknown  The camera exposure mode is unknown. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraSettingsDef.CameraExposureMode 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.CameraExposureMode valueOf(String name)
final static CameraExposureMode[] 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.CameraExposureMode AperturePriority

Aperture priority mode.

public static final DJICameraSettingsDef.CameraExposureMode Cine

Cine mode

public static final DJICameraSettingsDef.CameraExposureMode Manual

Manual mode.

public static final DJICameraSettingsDef.CameraExposureMode Program

Program mode.

public static final DJICameraSettingsDef.CameraExposureMode ShutterPriority

Shutter priority mode.

public static final DJICameraSettingsDef.CameraExposureMode Unknown

The camera exposure mode 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.CameraExposureMode find (int value)

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

Parameters
value The input integer value.
Returns
  • CameraExposureMode 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.CameraExposureMode valueOf (String name)

public static final CameraExposureMode[] values ()