public final enum

DJIVirtualStickFlightCoordinateSystem

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

Class Overview

An enum class representing flight control coordinate system.

Summary

Enum Values
DJIVirtualStickFlightCoordinateSystem  Body  Body coordinate system. 
DJIVirtualStickFlightCoordinateSystem  Ground  Ground coordinate system. 
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 DJIVirtualStickFlightCoordinateSystem 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 DJIVirtualStickFlightCoordinateSystem valueOf(String name)
final static DJIVirtualStickFlightCoordinateSystem[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIVirtualStickFlightCoordinateSystem Body

Body coordinate system.

public static final DJIVirtualStickFlightCoordinateSystem Ground

Ground coordinate system.

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 DJIVirtualStickFlightCoordinateSystem 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 DJIVirtualStickFlightCoordinateSystem valueOf (String name)

public static final DJIVirtualStickFlightCoordinateSystem[] values ()