Package com.inavi.mapsdk.maps
Enum Class UserTrackingMode
- All Implemented Interfaces:
Serializable
,Comparable<UserTrackingMode>
,java.lang.constant.Constable
사용자의 위치 추적 모드를 정의하는 열거형 클래스
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription사용자 위치 추적을 사용하지 않는 모드.사용자 위치가 추적되지만 카메라는 변경되지 않는 모드.사용자 위치가 추적되고 그에 따른 카메라의 위치가 변경되는 모드.사용자 위치가 추적되고 그에 따른 카메라의 위치와 베어링이 변경되는 모드. -
Method Summary
Modifier and TypeMethodDescriptionstatic UserTrackingMode
Returns the enum constant of this class with the specified name.static UserTrackingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
사용자 위치 추적을 사용하지 않는 모드.
이전에 기록된 사용자의 위치가 초기화되며, 위치와 베어링이 갱신되지 않습니다. -
NoTracking
사용자 위치가 추적되지만 카메라는 변경되지 않는 모드. -
Tracking
사용자 위치가 추적되고 그에 따른 카메라의 위치가 변경되는 모드. -
TrackingCompass
사용자 위치가 추적되고 그에 따른 카메라의 위치와 베어링이 변경되는 모드.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-