public final enum

LBAirLinkPIPPosition

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

Class Overview

PIP (Picture In Picture) position on the screen relative to the main subject video.

Summary

Enum Values
LBAirLinkPIPPosition  BottomLeft  PIP is in the screen's bottom left. 
LBAirLinkPIPPosition  BottomRight  PIP is in the screen's bottom right. 
LBAirLinkPIPPosition  TopLeft  PIP is in the screen's top left. 
LBAirLinkPIPPosition  TopRight  PIP is in the screen's top right. 
LBAirLinkPIPPosition  Unknown  Unknown PIP position. 
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static LBAirLinkPIPPosition 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 LBAirLinkPIPPosition valueOf(String name)
final static LBAirLinkPIPPosition[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final LBAirLinkPIPPosition BottomLeft

PIP is in the screen's bottom left.

public static final LBAirLinkPIPPosition BottomRight

PIP is in the screen's bottom right.

public static final LBAirLinkPIPPosition TopLeft

PIP is in the screen's top left.

public static final LBAirLinkPIPPosition TopRight

PIP is in the screen's top right.

public static final LBAirLinkPIPPosition Unknown

Unknown PIP position.

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 LBAirLinkPIPPosition 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 LBAirLinkPIPPosition valueOf (String name)

public static final LBAirLinkPIPPosition[] values ()