public enum UserTrackingMode extends Enum<UserTrackingMode>
Enum Constant and Description |
---|
None
사용자 위치 추적을 사용하지 않는 모드.
|
NoTracking
사용자 위치가 추적되지만 카메라는 변경되지 않는 모드.
|
Tracking
사용자 위치가 추적되고 그에 따른 카메라의 위치가 변경되는 모드.
|
TrackingCompass
사용자 위치가 추적되고 그에 따른 카메라의 위치와 베어링이 변경되는 모드.
|
Modifier and Type | Method and Description |
---|---|
static UserTrackingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserTrackingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserTrackingMode None
사용자 위치 추적을 사용하지 않는 모드.
이전에 기록된 사용자의 위치가 초기화되며, 위치와 베어링이 갱신되지 않습니다.public static final UserTrackingMode NoTracking
public static final UserTrackingMode Tracking
public static final UserTrackingMode TrackingCompass
public static UserTrackingMode[] values()
for (UserTrackingMode c : UserTrackingMode.values()) System.out.println(c);
public static UserTrackingMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null© 2019. iNavi Systems Corp. All rights reserved.