All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.securegraph.query.GeohashBucket Maven / Gradle / Ivy

The newest version!
package org.securegraph.query;

import org.securegraph.type.GeoPoint;
import org.securegraph.type.GeoRect;

import java.lang.reflect.Method;

public abstract class GeohashBucket {
    public final String key;
    public final long count;
    private final GeoPoint geoPoint;

    public GeohashBucket(String key, long count, GeoPoint geoPoint) {
        this.key = key;
        this.count = count;
        this.geoPoint = geoPoint;
    }

    public String getKey() {
        return key;
    }

    public long getCount() {
        return count;
    }

    public GeoPoint getGeoPoint() {
        return geoPoint;
    }

    public abstract GeoRect getGeoCell();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy