Enum MapCameraAnimation.InstantiationErrorCode

    • Enum Constant Detail

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

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

      • values

        public static MapCameraAnimation.InstantiationErrorCode[] 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 (MapCameraAnimation.InstantiationErrorCode c : MapCameraAnimation.InstantiationErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MapCameraAnimation.InstantiationErrorCode 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 name
        java.lang.NullPointerException - if the argument is null