Last active
December 22, 2015 14:09
-
-
Save altfatterz/6483875 to your computer and use it in GitHub Desktop.
filterBuilder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private FilterBuilder filterBuilder() { | |
return boolFilter() | |
.must(rangeFilter("price").from("250000").to("300000")) | |
.must(geoDistanceFilter("location") | |
.point(52.09, 5.11) | |
.distance(5, DistanceUnit.KILOMETERS) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment