Enum Class UserTrackingMode

java.lang.Object
java.lang.Enum<UserTrackingMode>
com.inavi.mapsdk.maps.UserTrackingMode
All Implemented Interfaces:
Serializable, Comparable<UserTrackingMode>, java.lang.constant.Constable

public enum UserTrackingMode extends Enum<UserTrackingMode>
사용자의 위치 추적 모드를 정의하는 열거형 클래스
  • Enum Constant Details

    • None

      public static final UserTrackingMode None

      사용자 위치 추적을 사용하지 않는 모드.

      이전에 기록된 사용자의 위치가 초기화되며, 위치와 베어링이 갱신되지 않습니다.
    • NoTracking

      public static final UserTrackingMode NoTracking
      사용자 위치가 추적되지만 카메라는 변경되지 않는 모드.
    • Tracking

      public static final UserTrackingMode Tracking
      사용자 위치가 추적되고 그에 따른 카메라의 위치가 변경되는 모드.
    • TrackingCompass

      public static final UserTrackingMode TrackingCompass
      사용자 위치가 추적되고 그에 따른 카메라의 위치와 베어링이 변경되는 모드.
  • Method Details

    • values

      public static UserTrackingMode[] 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

      public static UserTrackingMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null