Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.google.maps.android.clustering.algo;
|
||||
|
||||
import com.google.maps.android.clustering.Cluster;
|
||||
import com.google.maps.android.clustering.ClusterItem;
|
||||
import java.util.Collection;
|
||||
import java.util.Set;
|
||||
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface Algorithm<T extends ClusterItem> {
|
||||
boolean addItem(T t);
|
||||
|
||||
boolean addItems(Collection<T> collection);
|
||||
|
||||
void clearItems();
|
||||
|
||||
Set<? extends Cluster<T>> getClusters(float f);
|
||||
|
||||
Collection<T> getItems();
|
||||
|
||||
int getMaxDistanceBetweenClusteredItems();
|
||||
|
||||
void lock();
|
||||
|
||||
boolean removeItem(T t);
|
||||
|
||||
boolean removeItems(Collection<T> collection);
|
||||
|
||||
void setMaxDistanceBetweenClusteredItems(int i);
|
||||
|
||||
void unlock();
|
||||
|
||||
boolean updateItem(T t);
|
||||
}
|
||||
Reference in New Issue
Block a user