Package com.naver.maps.map
Enum CameraAnimation
- All Implemented Interfaces:
Serializable
,Comparable<CameraAnimation>
,java.lang.constant.Constable
카메라 이동 애니메이션 유형을 정의하는 열거형 클래스.
CameraUpdate
에서 사용합니다.- See Also:
-
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 CameraAnimation
Returns the enum constant of this type with the specified name.static CameraAnimation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
None
애니메이션 없음. -
Linear
선형 애니메이션. -
Easing
부드럽게 가감속되는 애니메이션. -
Fly
플라잉 애니메이션. 가속과 함께 축소됐다가 감속과 함께 확대됩니다.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-