public final enum

DJIRCJoinMasterResult

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

Class Overview

Results when a slave Remote Controller tries to join a master Remote Controller.

Summary

Enum Values
DJIRCJoinMasterResult  Maximum  The slave Remote Controller's attempt to join the master Remote Controller was unsuccessful because the master Remote Controller is at the maximum number of slaves it can have. 
DJIRCJoinMasterResult  PasswordError  The slave Remote Controller's attempt to join the master Remote Controller was unsuccessful due to a password error. 
DJIRCJoinMasterResult  Rejected  The slave Remote Controller's attempt to join the master Remote Controller was rejected. 
DJIRCJoinMasterResult  ResponseTimeout  The slave Remote Controller's attempt to join the master Remote Controller was unsuccessful because the request timed out. 
DJIRCJoinMasterResult  Successful  The slave Remote Controller's attempt to join the master Remote Controller was successful. 
DJIRCJoinMasterResult  Unknown  The result of the slave Remote Controller's attempt to join the master Remote Controller is unknown. 
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static DJIRCJoinMasterResult 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 DJIRCJoinMasterResult valueOf(String name)
final static DJIRCJoinMasterResult[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIRCJoinMasterResult Maximum

The slave Remote Controller's attempt to join the master Remote Controller was unsuccessful because the master Remote Controller is at the maximum number of slaves it can have.

public static final DJIRCJoinMasterResult PasswordError

The slave Remote Controller's attempt to join the master Remote Controller was unsuccessful due to a password error.

public static final DJIRCJoinMasterResult Rejected

The slave Remote Controller's attempt to join the master Remote Controller was rejected.

public static final DJIRCJoinMasterResult ResponseTimeout

The slave Remote Controller's attempt to join the master Remote Controller was unsuccessful because the request timed out.

public static final DJIRCJoinMasterResult Successful

The slave Remote Controller's attempt to join the master Remote Controller was successful.

public static final DJIRCJoinMasterResult Unknown

The result of the slave Remote Controller's attempt to join the master Remote Controller 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 DJIRCJoinMasterResult 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 DJIRCJoinMasterResult valueOf (String name)

public static final DJIRCJoinMasterResult[] values ()