public final enum

UserAccountStatus

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

Class Overview

User account status. Users need to be logged

Summary

Enum Values
UserAccountStatus  Authorized  User is logged in but has been authorized to unlock authorization zones. 
UserAccountStatus  InvalidToken  The token of the signed in account is invalid. 
UserAccountStatus  NotAuthorized  User is logged in but has not been authorized to unlock authorization zones. 
UserAccountStatus  NotLoggedin  User is not logged in. 
UserAccountStatus  TokenOutOfDate  The token of the user account is out of date. 
UserAccountStatus  Unknown  Unknown. 
Public Methods
boolean _equals(int b)
Returns the boolean result which compare the input integer value with the real value of a enum constant.
static UserAccountStatus find(int b)
Returns the enum constant of this type with the specified integer value.
int value()
Returns the real value of an enum constant.
static UserAccountStatus valueOf(String name)
final static UserAccountStatus[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final UserAccountStatus Authorized

User is logged in but has been authorized to unlock authorization zones.

public static final UserAccountStatus InvalidToken

The token of the signed in account is invalid.

public static final UserAccountStatus NotAuthorized

User is logged in but has not been authorized to unlock authorization zones.

public static final UserAccountStatus NotLoggedin

User is not logged in. User needs to be logged in to retrieve currently unlocked, and unlock authorization zones.

public static final UserAccountStatus TokenOutOfDate

The token of the user account is out of date.

public static final UserAccountStatus Unknown

Unknown.

Public Methods

public boolean _equals (int b)

Returns the boolean result which compare the input integer value with the real value of a enum constant.

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

public static UserAccountStatus find (int b)

Returns the enum constant of this type with the specified integer value.

Parameters
b The integer value.
Returns
  • DJICompassCalibrationStatus The enum constant of this type.

public int value ()

Returns the real value of an enum constant.

Returns
  • integer The real value.

public static UserAccountStatus valueOf (String name)

public static final UserAccountStatus[] values ()