461462463464465466467
/** * @see Sort */ public GeoPipeline sort(String property) { return addPipe(new Sort(property, true)); }
468469470471472473474
/** * @see Sort */ public GeoPipeline sort(String property, boolean asc) { return addPipe(new Sort(property, asc)); }
475476477478479480481
/** * @see Sort */ public GeoPipeline sort(String property, Comparator<Object> comparator) { return addPipe(new Sort(property, comparator)); }