public static final enum

DJICameraSettingsDef.CameraFileIndexMode

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

Class Overview

File index modes.

Summary

Enum Values
DJICameraSettingsDef.CameraFileIndexMode  Reset  Camera will reset the newest file's index to be one larger than the largest number of photos taken on the SD card. 
DJICameraSettingsDef.CameraFileIndexMode  Sequence  Camera will set the newest file's index to the larger of either the maximum number of photos taken on the SD card or the camera. 
DJICameraSettingsDef.CameraFileIndexMode  Unknown  The mode is 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 DJICameraSettingsDef.CameraFileIndexMode 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.CameraFileIndexMode valueOf(String name)
final static CameraFileIndexMode[] 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.CameraFileIndexMode Reset

Camera will reset the newest file's index to be one larger than the largest number of photos taken on the SD card.

public static final DJICameraSettingsDef.CameraFileIndexMode Sequence

Camera will set the newest file's index to the larger of either the maximum number of photos taken on the SD card or the camera.

public static final DJICameraSettingsDef.CameraFileIndexMode Unknown

The mode is 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 DJICameraSettingsDef.CameraFileIndexMode find (int value)

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

Parameters
value The input integer value
Returns
  • CameraFileIndexModeType 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.CameraFileIndexMode valueOf (String name)

public static final CameraFileIndexMode[] values ()