net.ravendb.client.documents.indexes.spatial.AutoSpatialOptions Maven / Gradle / Ivy
package net.ravendb.client.documents.indexes.spatial;
import java.util.List;
public class AutoSpatialOptions extends SpatialOptions {
private AutoSpatialMethodType methodType;
private List methodArguments;
public AutoSpatialMethodType getMethodType() {
return methodType;
}
public void setMethodType(AutoSpatialMethodType methodType) {
this.methodType = methodType;
}
public List getMethodArguments() {
return methodArguments;
}
public void setMethodArguments(List methodArguments) {
this.methodArguments = methodArguments;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy