Enum CameraAnimation

java.lang.Object
java.lang.Enum<CameraAnimation>
com.naver.maps.map.CameraAnimation
All Implemented Interfaces:
Serializable, Comparable<CameraAnimation>, java.lang.constant.Constable

public enum CameraAnimation extends Enum<CameraAnimation>
카메라 이동 애니메이션 유형을 정의하는 열거형 클래스. CameraUpdate에서 사용합니다.
See Also:
  • Enum Constant Details

    • 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 Details

    • values

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

      public static CameraAnimation valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null