public final enum

LBAirLinkEncodeMode

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

Class Overview

Lightbridge 2 encode mode.

Summary

Enum Values
LBAirLinkEncodeMode  Dual  Dual encode mode. 
LBAirLinkEncodeMode  Single  Single encode mode. 
LBAirLinkEncodeMode  Unknown  Unknown  
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static LBAirLinkEncodeMode 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 LBAirLinkEncodeMode valueOf(String name)
final static LBAirLinkEncodeMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final LBAirLinkEncodeMode Dual

Dual encode mode. Lightbridge 2 will encode the video input from both the AV port and the HDMI port.

public static final LBAirLinkEncodeMode Single

Single encode mode. Lightbridge 2 will only encode the video input from either the AV port or the HDMI port.

public static final LBAirLinkEncodeMode 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 LBAirLinkEncodeMode 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 LBAirLinkEncodeMode valueOf (String name)

public static final LBAirLinkEncodeMode[] values ()