Enum Class CameraAnimationType

java.lang.Object
java.lang.Enum<CameraAnimationType>
com.inavi.mapsdk.maps.CameraAnimationType
All Implemented Interfaces:
Serializable, Comparable<CameraAnimationType>, java.lang.constant.Constable

public enum CameraAnimationType extends Enum<CameraAnimationType>
카메라 이동 애니메이션의 타입을 정의한 열거형 클래스.

CameraUpdate에서 사용합니다.

  • Enum Constant Details

    • None

      public static final CameraAnimationType None
      애니메이션 없이 바로 이동합니다.
    • Linear

      public static final CameraAnimationType Linear
      시간 경과에 따라, 균일하게 이동하는 애니메이션.
    • Easing

      public static final CameraAnimationType Easing
      시간 경과에 따라, 가감속이 적용되어 이동하는 애니메이션.
    • Fly

      public static final CameraAnimationType Fly
      위치, 줌 레벨, 베어링, 기울기의 조합을 변경하여 비행처럼 이동하는 애니메이션.
  • Method Details

    • values

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

      public static CameraAnimationType valueOf(String name)
      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 name
      NullPointerException - if the argument is null