public final enum

DJIRCRequestGimbalControlResult

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

Class Overview

Result when a slave requests permission to control the gimbal.

Summary

Enum Values
DJIRCRequestGimbalControlResult  Agree  The master Remote Controller agrees to the slave's request. 
DJIRCRequestGimbalControlResult  Authorized  The master Remote Controller authorizes the slave request to control the gimbal. 
DJIRCRequestGimbalControlResult  Deny  The master Remote Controller denies the slave's request. 
DJIRCRequestGimbalControlResult  Timeout  The slave Remote Controller's request timed out. 
DJIRCRequestGimbalControlResult  Unknown  The slave Remote Controller's request is unknown. 
Public Methods
boolean _equals(int b)
Returns the boolean result of comparing the specified integer value with the real value of an enum constant.
static DJIRCRequestGimbalControlResult 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 DJIRCRequestGimbalControlResult valueOf(String name)
final static DJIRCRequestGimbalControlResult[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIRCRequestGimbalControlResult Agree

The master Remote Controller agrees to the slave's request.

public static final DJIRCRequestGimbalControlResult Authorized

The master Remote Controller authorizes the slave request to control the gimbal.

public static final DJIRCRequestGimbalControlResult Deny

The master Remote Controller denies the slave's request. If the slave Remote Controller wants to control the gimbal, it must send a request to master Remote Controller first. Then the master Remote Controller can decide to approve or deny the request.

public static final DJIRCRequestGimbalControlResult Timeout

The slave Remote Controller's request timed out.

public static final DJIRCRequestGimbalControlResult Unknown

The slave Remote Controller's request is unknown.

Public Methods

public boolean _equals (int b)

Returns the boolean result of comparing 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 DJIRCRequestGimbalControlResult 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 DJIRCRequestGimbalControlResult valueOf (String name)

public static final DJIRCRequestGimbalControlResult[] values ()