public class

BaseRange

extends Object
java.lang.Object
   ↳ dji.common.camera.BaseRange<T>
Known Direct Subclasses

Class Overview

Base class for all RangeValue like CameraISORange, CameraApertureRange etc, there are two types of RangeValue,the one is List type range with TYPE_LIST, the other is Max-Min type value with TYPE_MAX_MIN.

Summary

Constants
int TYPE_LIST
int TYPE_MAX_MIN
Public Constructors
BaseRange(int type)
BaseRange(Set<T> rangeList)
BaseRange(T maxValue, T minValue)
Public Methods
boolean equals(Object o)
T getMaxValue()
T getMinValue()
Set<T> getRangeList()
int getType()
int hashCode()
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int TYPE_LIST

Constant Value: 2 (0x00000002)

public static final int TYPE_MAX_MIN

Constant Value: 1 (0x00000001)

Public Constructors

public BaseRange (int type)

public BaseRange (Set<T> rangeList)

public BaseRange (T maxValue, T minValue)

Public Methods

public boolean equals (Object o)

public T getMaxValue ()

public T getMinValue ()

public Set<T> getRangeList ()

public int getType ()

public int hashCode ()

public String toString ()