Enum Class MapCameraAnimation.InstantiationErrorCode

java.lang.Object
java.lang.Enum<MapCameraAnimation.InstantiationErrorCode>
com.here.sdk.mapview.MapCameraAnimation.InstantiationErrorCode
All Implemented Interfaces:
Serializable, Comparable<MapCameraAnimation.InstantiationErrorCode>, Constable
Enclosing class:
MapCameraAnimation

public static enum MapCameraAnimation.InstantiationErrorCode extends Enum<MapCameraAnimation.InstantiationErrorCode>

Describes a reason for failing to create a multi-track MapCameraAnimation.

  • Enum Constant Details

    • EMPTY_TRACK_LIST

      public static final MapCameraAnimation.InstantiationErrorCode EMPTY_TRACK_LIST

      List of keyframe tracks is empty.

    • MULTIPLE_CAMERA_POSITION_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_POSITION_TRACKS

      List of keyframe tracks contains multiple camera position tracks.

    • CAMERA_POSITION_MODIFIED_BY_CAMERA_LOOKAT_TARGET_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_POSITION_MODIFIED_BY_CAMERA_LOOKAT_TARGET_TRACK

      Camera's position is already modified by an earlier track that modifies camera's look-at target.

    • CAMERA_POSITION_MODIFIED_BY_CAMERA_LOOKAT_ORIENTATION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_POSITION_MODIFIED_BY_CAMERA_LOOKAT_ORIENTATION_TRACK

      Camera's position is already modified by an earlier track that modifies camera's look-at orientation.

    • CAMERA_POSITION_MODIFIED_BY_CAMERA_LOOKAT_DISTANCE_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_POSITION_MODIFIED_BY_CAMERA_LOOKAT_DISTANCE_TRACK

      Camera's position is already modified by an earlier track that modifies camera's look-at distance.

    • MULTIPLE_CAMERA_ORIENTATION_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_ORIENTATION_TRACKS

      List of keyframe tracks contains multiple camera orientation tracks.

    • CAMERA_ORIENTATION_MODIFIED_BY_CAMERA_LOOKAT_ORIENTATION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_ORIENTATION_MODIFIED_BY_CAMERA_LOOKAT_ORIENTATION_TRACK

      Camera's orientation is already modified by an earlier track that modifies camera's look-at orientation.

    • CAMERA_ORIENTATION_MODIFIED_BY_CAMERA_LOOKAT_DISTANCE_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_ORIENTATION_MODIFIED_BY_CAMERA_LOOKAT_DISTANCE_TRACK

      Camera's orientation is already modified by an earlier track that modifies camera's look-at distance.

    • MULTIPLE_CAMERA_LOOKAT_TARGET_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_LOOKAT_TARGET_TRACKS

      List of keyframe tracks contains multiple camera look-at target tracks.

    • CAMERA_LOOKAT_TARGET_MODIFIED_BY_CAMERA_POSITION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_LOOKAT_TARGET_MODIFIED_BY_CAMERA_POSITION_TRACK

      Camera's look-at target is already modified by an earlier track that modifies camera's position.

    • CAMERA_LOOKAT_TARGET_MODIFIED_BY_CAMERA_ORIENTATION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_LOOKAT_TARGET_MODIFIED_BY_CAMERA_ORIENTATION_TRACK

      Camera's look-at target is already modified by an earlier track that modifies camera's orientation.

    • MULTIPLE_CAMERA_LOOKAT_ORIENTATION_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_LOOKAT_ORIENTATION_TRACKS

      List of keyframe tracks contains multiple camera look-at orientation tracks.

    • CAMERA_LOOKAT_ORIENTATION_MODIFIED_BY_CAMERA_POSITION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_LOOKAT_ORIENTATION_MODIFIED_BY_CAMERA_POSITION_TRACK

      Camera's look-at orientation is already modified by an earlier track that modifies camera's position.

    • CAMERA_LOOKAT_ORIENTATION_MODIFIED_BY_CAMERA_ORIENTATION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_LOOKAT_ORIENTATION_MODIFIED_BY_CAMERA_ORIENTATION_TRACK

      Camera's look-at orientation is already modified by an earlier track that modifies camera's orientation.

    • MULTIPLE_CAMERA_LOOKAT_DISTANCE_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_LOOKAT_DISTANCE_TRACKS

      List of keyframe tracks contains multiple camera look-at distance tracks.

    • CAMERA_LOOKAT_DISTANCE_MODIFIED_BY_CAMERA_POSITION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_LOOKAT_DISTANCE_MODIFIED_BY_CAMERA_POSITION_TRACK

      Camera's look-at distance is already modified by an earlier track that modifies camera's position.

    • CAMERA_LOOKAT_DISTANCE_MODIFIED_BY_CAMERA_ORIENTATION_TRACK

      public static final MapCameraAnimation.InstantiationErrorCode CAMERA_LOOKAT_DISTANCE_MODIFIED_BY_CAMERA_ORIENTATION_TRACK

      Camera's look-at distance is already modified by an earlier track that modifies camera's orientation.

    • MULTIPLE_CAMERA_FIELD_OF_VIEW_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_FIELD_OF_VIEW_TRACKS

      List of keyframe tracks contains multiple camera field-of-view tracks.

    • MULTIPLE_CAMERA_FOCAL_LENGTH_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_FOCAL_LENGTH_TRACKS

      List of keyframe tracks contains multiple camera focal length tracks.

    • MULTIPLE_CAMERA_PRINCIPAL_POINT_TRACKS

      public static final MapCameraAnimation.InstantiationErrorCode MULTIPLE_CAMERA_PRINCIPAL_POINT_TRACKS

      List of keyframe tracks contains multiple camera principal point tracks.

  • 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

      public static MapCameraAnimation.InstantiationErrorCode 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