public final enum

DJIFlightControlState

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

Class Overview

This is an enum for notification of flight control state.

Summary

Enum Values
DJIFlightControlState  Atti  Atti  
DJIFlightControlState  ClickGo  Start Navigation Mission  
DJIFlightControlState  F_Atti  F_Atti  
DJIFlightControlState  F_GPS  F_GPS  
DJIFlightControlState  F_Opti  F_Opti  
DJIFlightControlState  GoHome  Go home  
DJIFlightControlState  Joystick  Joystick  
DJIFlightControlState  Landing  Landing  
DJIFlightControlState  Manual  Manual  
DJIFlightControlState  N_A  None  
DJIFlightControlState  Navi  Navigation  
DJIFlightControlState  Novice  Novice  
DJIFlightControlState  P_Atti  P_Atti  
DJIFlightControlState  P_GPS  P_GPS  
DJIFlightControlState  P_Opti  P_Opti  
DJIFlightControlState  Pointing  Point mission  
DJIFlightControlState  Sport  Sport Mode  
DJIFlightControlState  TakeOff  Take off  
DJIFlightControlState  Tracking  Tracking Mission  
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 DJIFlightControlState 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 DJIFlightControlState valueOf(String name)
final static DJIFlightControlState[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIFlightControlState Atti

Atti

public static final DJIFlightControlState ClickGo

Start Navigation Mission

public static final DJIFlightControlState F_Atti

F_Atti

public static final DJIFlightControlState F_GPS

F_GPS

public static final DJIFlightControlState F_Opti

F_Opti

public static final DJIFlightControlState GoHome

Go home

public static final DJIFlightControlState Joystick

Joystick

public static final DJIFlightControlState Landing

Landing

public static final DJIFlightControlState Manual

Manual

public static final DJIFlightControlState N_A

None

public static final DJIFlightControlState Navi

Navigation

public static final DJIFlightControlState Novice

Novice

public static final DJIFlightControlState P_Atti

P_Atti

public static final DJIFlightControlState P_GPS

P_GPS

public static final DJIFlightControlState P_Opti

P_Opti

public static final DJIFlightControlState Pointing

Point mission

public static final DJIFlightControlState Sport

Sport Mode

public static final DJIFlightControlState TakeOff

Take off

public static final DJIFlightControlState Tracking

Tracking Mission

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

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

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

public int value ()

Returns the real value of a enum constant.

Returns
  • integer The real value.

public static DJIFlightControlState valueOf (String name)

public static final DJIFlightControlState[] values ()