public final enum

DJIFlightOrientationMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.flightcontroller.DJIFlightOrientationMode

Class Overview

Tells the aircraft how to interpret flight commands for forward, backward, left and right. Additional information should be seen in the getting started guide.

Summary

Enum Values
DJIFlightOrientationMode  CourseLock  The aircraft should move relative to a locked course heading. 
DJIFlightOrientationMode  DefaultAircraftHeading  The aircraft should move relative to the front of the aircraft. 
DJIFlightOrientationMode  HomeLock  The aircraft should move relative radially to the Home Point. 
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 DJIFlightOrientationMode find(int b)
Returns the enum constant of this type with the input integer value.
int value()
Returns the real value of a enum constant.
static DJIFlightOrientationMode valueOf(String name)
final static DJIFlightOrientationMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIFlightOrientationMode CourseLock

The aircraft should move relative to a locked course heading.

public static final DJIFlightOrientationMode DefaultAircraftHeading

The aircraft should move relative to the front of the aircraft.

public static final DJIFlightOrientationMode HomeLock

The aircraft should move relative radially to the Home Point.

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 DJIFlightOrientationMode find (int b)

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

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

public int value ()

Returns the real value of a enum constant.

Returns
  • integer The real value.

public static DJIFlightOrientationMode valueOf (String name)

public static final DJIFlightOrientationMode[] values ()