public static final enum

DJICameraSettingsDef.CameraWhiteBalance

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

Class Overview

Camera white balance values. The default value is Auto.

Summary

Enum Values
DJICameraSettingsDef.CameraWhiteBalance  Auto  The camera's white balance value is automatically set. 
DJICameraSettingsDef.CameraWhiteBalance  Cloudy  The camera's white balance value is set to cloudy. 
DJICameraSettingsDef.CameraWhiteBalance  CustomColorTemperature  The camera's white balance is set to custom color temperature. 
DJICameraSettingsDef.CameraWhiteBalance  IndoorFluorescent  The camera's white balance value is set to indoors and fluorescent light. 
DJICameraSettingsDef.CameraWhiteBalance  IndoorIncandescent  The camera's white balance value is set to indoors and incandescent light. 
DJICameraSettingsDef.CameraWhiteBalance  Sunny  The camera's white balance value is set to sunny. 
DJICameraSettingsDef.CameraWhiteBalance  Unknown  The camera's white balance value is unknown. 
DJICameraSettingsDef.CameraWhiteBalance  WaterSuface  The camera's white balance value is set to water surface. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraSettingsDef.CameraWhiteBalance 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.CameraWhiteBalance valueOf(String name)
final static CameraWhiteBalance[] 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.CameraWhiteBalance Auto

The camera's white balance value is automatically set.

public static final DJICameraSettingsDef.CameraWhiteBalance Cloudy

The camera's white balance value is set to cloudy.

public static final DJICameraSettingsDef.CameraWhiteBalance CustomColorTemperature

The camera's white balance is set to custom color temperature. By using this white balance value, user can set a specific value for the color temperature.

public static final DJICameraSettingsDef.CameraWhiteBalance IndoorFluorescent

The camera's white balance value is set to indoors and fluorescent light.

public static final DJICameraSettingsDef.CameraWhiteBalance IndoorIncandescent

The camera's white balance value is set to indoors and incandescent light.

public static final DJICameraSettingsDef.CameraWhiteBalance Sunny

The camera's white balance value is set to sunny.

public static final DJICameraSettingsDef.CameraWhiteBalance Unknown

The camera's white balance value is unknown.

public static final DJICameraSettingsDef.CameraWhiteBalance WaterSuface

The camera's white balance value is set to water surface.

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.CameraWhiteBalance find (int value)

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

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

public static final CameraWhiteBalance[] values ()