public final enum

DJIRemoteControllerMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.remotecontroller.DJIRemoteControllerMode

Class Overview

Remote Controller mode of operation can be normal (single RC connected to aircraft), master, slave, or unknown

Summary

Enum Values
DJIRemoteControllerMode  Master  Remote Controller is a master (will route a connected slave Remote Controller's commands to the aircraft). 
DJIRemoteControllerMode  Normal  Remote Controller is not connected to another Remote Controller. 
DJIRemoteControllerMode  Slave  Remote Controller is currently a slave Remote Controller (sends commands to aircraft through a master Remote Controller). 
DJIRemoteControllerMode  Unknown  The Remote Controller's mode is 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 DJIRemoteControllerMode 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 DJIRemoteControllerMode valueOf(String name)
final static DJIRemoteControllerMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIRemoteControllerMode Master

Remote Controller is a master (will route a connected slave Remote Controller's commands to the aircraft).

public static final DJIRemoteControllerMode Normal

Remote Controller is not connected to another Remote Controller.

public static final DJIRemoteControllerMode Slave

Remote Controller is currently a slave Remote Controller (sends commands to aircraft through a master Remote Controller).

public static final DJIRemoteControllerMode Unknown

The Remote Controller's mode is 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.

public static DJIRemoteControllerMode find (int value)

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

public int value ()

Returns the real value of a enum constant.

public static DJIRemoteControllerMode valueOf (String name)

public static final DJIRemoteControllerMode[] values ()