public final enum

DJIGimbalAxis

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

Class Overview

Gimbal Axis.

Summary

Enum Values
DJIGimbalAxis  Pitch  Gimbal's pitch axis. 
DJIGimbalAxis  Roll  Gimbal's roll axis. 
DJIGimbalAxis  Yaw  Gimbal's yaw axis. 
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 DJIGimbalAxis find(int value)
Returns the enum constant of this type with the specified integer value.
int value()
Returns the real value of a enum constant.
static DJIGimbalAxis valueOf(String name)
final static DJIGimbalAxis[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJIGimbalAxis Pitch

Gimbal's pitch axis.

public static final DJIGimbalAxis Roll

Gimbal's roll axis.

public static final DJIGimbalAxis Yaw

Gimbal's yaw axis.

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 DJIGimbalAxis 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 a enum constant.

Returns
  • integer The real value

public static DJIGimbalAxis valueOf (String name)

public static final DJIGimbalAxis[] values ()