public final enum

DJIRCToAircraftPairingState

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

Class Overview

Remote controller pairing state.

Summary

Enum Values
DJIRCToAircraftPairingState  Completed  The Remote Controller's pairing was completed. 
DJIRCToAircraftPairingState  None  The Remote Controller is not pairing. 
DJIRCToAircraftPairingState  Pairing  The Remote Controller is currently pairing. 
DJIRCToAircraftPairingState  Unknown  The Remote Controller's pairing state is unknown. 
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static DJIRCToAircraftPairingState find(int value)
Returns the enum constant of this type with the specified integer value.
int value()
Returns the real value of an enum constant.
static DJIRCToAircraftPairingState valueOf(String name)
final static DJIRCToAircraftPairingState[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIRCToAircraftPairingState Completed

The Remote Controller's pairing was completed.

public static final DJIRCToAircraftPairingState None

The Remote Controller is not pairing.

public static final DJIRCToAircraftPairingState Pairing

The Remote Controller is currently pairing.

public static final DJIRCToAircraftPairingState Unknown

The Remote Controller's pairing state is unknown.

Public Methods

public boolean _equals (int b)

Compares 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 DJIRCToAircraftPairingState find (int value)

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

public int value ()

Returns the real value of an enum constant.

public static DJIRCToAircraftPairingState valueOf (String name)

public static final DJIRCToAircraftPairingState[] values ()