public static final enum

DJICameraSettingsDef.CameraCustomSettings

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.camera.DJICameraSettingsDef.CameraCustomSettings

Class Overview

Camera user settings. A user can save or load camera settings to or from a specific user.

Summary

Enum Values
DJICameraSettingsDef.CameraCustomSettings  Default  Default user. 
DJICameraSettingsDef.CameraCustomSettings  Profile1  Settings for user 1. 
DJICameraSettingsDef.CameraCustomSettings  Profile2  Settings for user 2. 
DJICameraSettingsDef.CameraCustomSettings  Profile3  Settings for user 3. 
DJICameraSettingsDef.CameraCustomSettings  Profile4  Settings for user 4. 
DJICameraSettingsDef.CameraCustomSettings  Unknown  The user is unknown. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraSettingsDef.CameraCustomSettings find(int value)
Returns the enum constant of this type with the input integer value.
int value()
Returns the real value of an enum value.
static DJICameraSettingsDef.CameraCustomSettings valueOf(String name)
final static CameraCustomSettings[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJICameraSettingsDef.CameraCustomSettings Default

Default user.

public static final DJICameraSettingsDef.CameraCustomSettings Profile1

Settings for user 1.

public static final DJICameraSettingsDef.CameraCustomSettings Profile2

Settings for user 2.

public static final DJICameraSettingsDef.CameraCustomSettings Profile3

Settings for user 3.

public static final DJICameraSettingsDef.CameraCustomSettings Profile4

Settings for user 4.

public static final DJICameraSettingsDef.CameraCustomSettings Unknown

The user is unknown.

Public Methods

public boolean _equals (int b)

Compares the input integer value with the real value of an enum value.

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

public static DJICameraSettingsDef.CameraCustomSettings find (int value)

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

Parameters
value The input integer value
Returns
  • CameraCustomSettings The enum constant of this type

public int value ()

Returns the real value of an enum value.

Returns
  • integer The real value.

public static DJICameraSettingsDef.CameraCustomSettings valueOf (String name)

public static final CameraCustomSettings[] values ()