public final enum

ChannelSelectionMode

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

Class Overview

Downlink channel selection mode (manual or automatic) for the wireless link.

Summary

Enum Values
ChannelSelectionMode  Auto  Air link will automatically select the best physical channel based on the signal environment. 
ChannelSelectionMode  Manual  Manually select the physical channel. 
ChannelSelectionMode  Unknown  Unknown physical channel selection mode. 
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static ChannelSelectionMode 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 ChannelSelectionMode valueOf(String name)
final static ChannelSelectionMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ChannelSelectionMode Auto

Air link will automatically select the best physical channel based on the signal environment.

public static final ChannelSelectionMode Manual

Manually select the physical channel.

public static final ChannelSelectionMode Unknown

Unknown physical channel selection mode.

Public Methods

public boolean _equals (int b)

Compares the specified 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 ChannelSelectionMode find (int value)

Returns the enum constant of the type for 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
  • The real value of the enum.

public static ChannelSelectionMode valueOf (String name)

public static final ChannelSelectionMode[] values ()