public final enum

LBAirLinkDataRate

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.airlink.LBAirLinkDataRate

Class Overview

Wireless downlink data rate. Lower rates are used for longer ranges, but will have lower video quality.

Summary

Enum Values
LBAirLinkDataRate  Bandwidth10Mbps  10 Mbps (Potential range up to 0.7 km)  
LBAirLinkDataRate  Bandwidth4Mbps  4 Mbps (Potential range up to 3 km)  
LBAirLinkDataRate  Bandwidth6Mbps  6 Mbps (Potential range up to 2 km)  
LBAirLinkDataRate  Bandwidth8Mbps  8 Mbps (Potential range up to 1.5 km)  
LBAirLinkDataRate  Unknown  Unknown  
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static LBAirLinkDataRate find(int value)
Returns the enum constant of the type for the specified integer value.
int value()
Returns the real value of an enum constant.
static LBAirLinkDataRate valueOf(String name)
final static LBAirLinkDataRate[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final LBAirLinkDataRate Bandwidth10Mbps

10 Mbps (Potential range up to 0.7 km)

public static final LBAirLinkDataRate Bandwidth4Mbps

4 Mbps (Potential range up to 3 km)

public static final LBAirLinkDataRate Bandwidth6Mbps

6 Mbps (Potential range up to 2 km)

public static final LBAirLinkDataRate Bandwidth8Mbps

8 Mbps (Potential range up to 1.5 km)

public static final LBAirLinkDataRate Unknown

Unknown

Public Methods

public boolean _equals (int b)

Compares the specified integer value with the real value of an enum constant.

Parameters
b The specified integer value
Returns
  • true if the values are equal, false otherwise.

public static LBAirLinkDataRate find (int value)

Returns the enum constant of the type for the specified integer value.

Parameters
value The specified integer value.
Returns
  • The enum constant of this type.

public int value ()

Returns the real value of an enum constant.

Returns
  • The real value.

public static LBAirLinkDataRate valueOf (String name)

public static final LBAirLinkDataRate[] values ()