public final enum

WiFiFrequencyBand

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

Class Overview

WiFi frequency band.

Summary

Enum Values
WiFiFrequencyBand  FrequencyBand2Dot4G  The WiFi frequency band is 2.4 GHz. 
WiFiFrequencyBand  FrequencyBand5G  The WiFi frequency band is 5 GHz. 
WiFiFrequencyBand  FrequencyBandDual  Dual frequency band mode. 
WiFiFrequencyBand  Unknown  The WiFi Frequency is unknown. 
Public Methods
boolean _equals(int b)
Returns the boolean result with which to compare the input integer value with the real value of an enum constant.
static WiFiFrequencyBand 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 WiFiFrequencyBand valueOf(String name)
final static WiFiFrequencyBand[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final WiFiFrequencyBand FrequencyBand2Dot4G

The WiFi frequency band is 2.4 GHz.

public static final WiFiFrequencyBand FrequencyBand5G

The WiFi frequency band is 5 GHz.

public static final WiFiFrequencyBand FrequencyBandDual

Dual frequency band mode. The WiFi frequency band can be either 2.4 GHz or 5 GHz.

public static final WiFiFrequencyBand Unknown

The WiFi Frequency is unknown.

Public Methods

public boolean _equals (int b)

Returns the boolean result with which to compare the input integer value with the real value of an enum constant.

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

public static WiFiFrequencyBand find (int value)

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

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

public int value ()

Returns the real value of an enum constant.

Returns
  • integer The real value.

public static WiFiFrequencyBand valueOf (String name)

public static final WiFiFrequencyBand[] values ()