public final enum

DJIBatteryLowCellVoltageOperation

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.battery.DJIBatteryLowCellVoltageOperation

Class Overview

Defines aircraft operation when the cell voltage is low. It is only supported when the connected product is stand-alone A3 and N3.

Summary

Enum Values
DJIBatteryLowCellVoltageOperation  GoHome  Return-to-Home  
DJIBatteryLowCellVoltageOperation  LEDWarning  LED lights go into warning mode  
DJIBatteryLowCellVoltageOperation  Landing  Land aircraft immediately  
DJIBatteryLowCellVoltageOperation  Unknown  Unknown  
Public Methods
boolean _equals(int b)
Returns the boolean result which compare the input integer value with the real value of a enum constant.
static DJIBatteryLowCellVoltageOperation find(int value)
Returns the enum constant of this type with the input integer value.
int value()
Returns the real value of a enum constant.
static DJIBatteryLowCellVoltageOperation valueOf(String name)
final static DJIBatteryLowCellVoltageOperation[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIBatteryLowCellVoltageOperation GoHome

Return-to-Home

public static final DJIBatteryLowCellVoltageOperation LEDWarning

LED lights go into warning mode

public static final DJIBatteryLowCellVoltageOperation Landing

Land aircraft immediately

public static final DJIBatteryLowCellVoltageOperation Unknown

Unknown

Public Methods

public boolean _equals (int b)

Returns the boolean result which compare the input integer value with the real value of a enum constant.

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

public static DJIBatteryLowCellVoltageOperation find (int value)

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

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

public int value ()

Returns the real value of a enum constant.

Returns
  • integer The real value.

public static DJIBatteryLowCellVoltageOperation valueOf (String name)

public static final DJIBatteryLowCellVoltageOperation[] values ()