public final enum

DJIGimbalRotateAngleMode

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

Class Overview

The rotation angle of gimbal can be defined as either Absolute (relative to heading), or Relative (relative to it's current angle).

Summary

Enum Values
DJIGimbalRotateAngleMode  AbsoluteAngle  The angle value, when the gimbal is rotating, relative to 0 degrees (aircraft heading). 
DJIGimbalRotateAngleMode  RelativeAngle  The angle value, when the gimbal is rotating, relative to the current angle. 
Public Methods
boolean _equals(int b)
Returns the boolean result of comparing the specified integer value with the real value of an enum constant.
static DJIGimbalRotateAngleMode 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 DJIGimbalRotateAngleMode valueOf(String name)
final static DJIGimbalRotateAngleMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIGimbalRotateAngleMode AbsoluteAngle

The angle value, when the gimbal is rotating, relative to 0 degrees (aircraft heading).

public static final DJIGimbalRotateAngleMode RelativeAngle

The angle value, when the gimbal is rotating, relative to the current angle.

Public Methods

public boolean _equals (int b)

Returns the boolean result of comparing the specified integer value with the real value of an enum constant.

Parameters
b The input integer value.
Returns
  • boolean The comparison result.

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

public static final DJIGimbalRotateAngleMode[] values ()