Package com.inavi.mapsdk.maps
Enum Class CameraAnimationType
- All Implemented Interfaces:
Serializable
,Comparable<CameraAnimationType>
,java.lang.constant.Constable
카메라 이동 애니메이션의 타입을 정의한 열거형 클래스.
CameraUpdate
에서 사용합니다.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic CameraAnimationType
Returns the enum constant of this class with the specified name.static CameraAnimationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
애니메이션 없이 바로 이동합니다. -
Linear
시간 경과에 따라, 균일하게 이동하는 애니메이션. -
Easing
시간 경과에 따라, 가감속이 적용되어 이동하는 애니메이션. -
Fly
위치, 줌 레벨, 베어링, 기울기의 조합을 변경하여 비행처럼 이동하는 애니메이션.
-
-
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
-