public final enum

DJITapFlyMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.missionmanager.DJITapFlyMode

Class Overview

Different modes of the TapFly Mission. Defaults to Forward, set to others to enable the feature.

Summary

Enum Values
DJITapFlyMode  Backward  Aircraft will fly in the opposite direction from the target. 
DJITapFlyMode  Forward  Aircraft will fly towards the target. 
DJITapFlyMode  Free  Aircraft will fly towards the target. 
DJITapFlyMode  Unknown  The TapFly mode is unknown. 
Public Methods
boolean _equals(int b)
Returns the boolean result of comparing the specified integer value with the real value of an enum constant.
static DJITapFlyMode find(int value)
Returns the enum constant of this type, the specified integer value.
int value()
Returns the real value of an enum constant.
static DJITapFlyMode valueOf(String name)
final static DJITapFlyMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJITapFlyMode Backward

Aircraft will fly in the opposite direction from the target. Backward Obstacle Sensing System is active.

public static final DJITapFlyMode Forward

Aircraft will fly towards the target. Forward Obstacle Sensing System is active.

public static final DJITapFlyMode Free

Aircraft will fly towards the target. User can control the heading by remote controller's stick. Obstacle Sensing Systems may fail to work when aircraft is flying sideward.

public static final DJITapFlyMode Unknown

The TapFly mode is unknown.

Public Methods

public boolean _equals (int b)

Returns the boolean result of comparing the specified integer value with the real value of an enum constant.

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

public static DJITapFlyMode find (int value)

Returns the enum constant of this type, the specified integer value.

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

public int value ()

Returns the real value of an enum constant.

Returns
  • integer The real value.

public static DJITapFlyMode valueOf (String name)

public static final DJITapFlyMode[] values ()