Package-level declarations
Types
Pure, UI-free matcher for the combination / cross-reference search feature.
This class is a general filter list model model to show static filters list.
This class is a general filter model. Below builder is useful to create a filterParam for @see{PoiFilter} class
This class is a general sort list model model to show static filters list.
PoiFilter is an object with filtering options which will be used to refine the list of points of interest list. CoreApi.Properties.searchPoi. Use the PoiFilter.Builder.addFilter to add multiple filters. // @formatter:off {code} //the following filter gets a) all poi in 'Fast Food' category that are on Floor 941. plus b) all the poi in "Department Stores" that are on building 504. PoiFilter poiFilter = new PoiFilter.Builder() .addFilter(new PoiFilter.IntersectionFilter.Builder() .addFloor(941) .addCategory(categoryUUID_of_Fast_Food) .build() ).addFilter(new PoiFilter.IntersectionFilter.Builder() .addBuilding(504) .addCategory(categoryUUID_of_Department_Stores) .build() ).build();
This class is a general sort list model model to show static filters list.