com.mapbox.mapboxsdk.maps.Annotations Maven / Gradle / Ivy
package com.mapbox.mapboxsdk.maps;
import android.support.annotation.NonNull;
import com.mapbox.mapboxsdk.annotations.Annotation;
import java.util.List;
/**
* Interface that defines convenient methods for working with a {@link Annotation}'s collection.
*/
interface Annotations {
Annotation obtainBy(long id);
List obtainAll();
void removeBy(long id);
void removeBy(@NonNull Annotation annotation);
void removeBy(@NonNull List extends Annotation> annotationList);
void removeAll();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy