public static final enum

DJICameraSettingsDef.CameraContrast

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

Class Overview

Camera contrast. The default value is Standard.

Summary

Enum Values
DJICameraSettingsDef.CameraContrast  Hard  The camera's contrast value is set to hard. 
DJICameraSettingsDef.CameraContrast  Soft  The camera's contrast value is set to soft. 
DJICameraSettingsDef.CameraContrast  Standard  The camera's contrast value is set to standard. 
DJICameraSettingsDef.CameraContrast  Unknown  The camera's contrast value is unknown. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraSettingsDef.CameraContrast 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.CameraContrast valueOf(String name)
final static CameraContrast[] 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.CameraContrast Hard

The camera's contrast value is set to hard.

public static final DJICameraSettingsDef.CameraContrast Soft

The camera's contrast value is set to soft.

public static final DJICameraSettingsDef.CameraContrast Standard

The camera's contrast value is set to standard.

public static final DJICameraSettingsDef.CameraContrast Unknown

The camera's contrast value 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.CameraContrast find (int value)

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

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

public static final CameraContrast[] values ()