Package com.naver.maps.map
Enum CameraAnimation
- java.lang.Object
-
- java.lang.Enum<CameraAnimation>
-
- com.naver.maps.map.CameraAnimation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CameraAnimation>
public enum CameraAnimation extends java.lang.Enum<CameraAnimation>
카메라 이동 애니메이션 유형을 정의하는 열거형 클래스.CameraUpdate
에서 사용합니다.- See Also:
CameraUpdate.animate(CameraAnimation)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CameraAnimation
valueOf(java.lang.String name)
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.
-
-
-
Enum Constant Detail
-
None
public static final CameraAnimation None
애니메이션 없음.
-
Linear
public static final CameraAnimation Linear
선형 애니메이션.
-
Easing
public static final CameraAnimation Easing
부드럽게 가감속되는 애니메이션.
-
Fly
public static final CameraAnimation Fly
플라잉 애니메이션. 가속과 함께 축소됐다가 감속과 함께 확대됩니다.
-
-
Method Detail
-
values
public static CameraAnimation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CameraAnimation c : CameraAnimation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CameraAnimation valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-