public final enum

DJICameraThermalMeasurementMode

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

Class Overview

Thermal measurement mode.

Summary

Enum Values
DJICameraThermalMeasurementMode  AreaMetering  Enable temperature measurement and set mode to area metering. 
DJICameraThermalMeasurementMode  Disabled  Disable the temperature measuring. 
DJICameraThermalMeasurementMode  SpotMetering  Enable temperature measurement and set mode to spot metering. 
DJICameraThermalMeasurementMode  Unknown  Thermal camera's temperature measurement mode is unknown. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraThermalMeasurementMode 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 DJICameraThermalMeasurementMode valueOf(String name)
final static DJICameraThermalMeasurementMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJICameraThermalMeasurementMode AreaMetering

Enable temperature measurement and set mode to area metering. Use `camera:didUpdateAreaTemperatureAggregations:` in `DJICameraDelegate` to receive the updated temperature data. Only supported by the advanced radiometry version XT camera.

public static final DJICameraThermalMeasurementMode Disabled

Disable the temperature measuring.

public static final DJICameraThermalMeasurementMode SpotMetering

Enable temperature measurement and set mode to spot metering. Use `[camera:didUpdateTemperatureData:]` in `DJICameraDelegate` to receive the updated temperature data. In this mode, the advanced radiometry version XT camera can change the metering point using `setThermalSpotMeteringTargetPoint:withCompletion`.

public static final DJICameraThermalMeasurementMode Unknown

Thermal camera's temperature measurement 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 DJICameraThermalMeasurementMode 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 DJICameraThermalMeasurementMode valueOf (String name)

public static final DJICameraThermalMeasurementMode[] values ()