Package es.situm.sdk.utils.filter
Interface Filterable
-
- All Known Implementing Classes:
Building
,Floor
,Geofence
,OrganizationTheme
,Poi
,PoiCategory
,RemoteCalibration
,Resource
public interface Filterable
Deprecated.Use a for with an if to filter the collectionObject with custom fields. You can useFilter
to filter a collection ofFilterable
by their custom fields.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>
getCustomFields()
Deprecated.Obtain a map with the custom fields of this instance.
-
-
-
Method Detail
-
getCustomFields
@NonNull java.util.Map<java.lang.String,java.lang.String> getCustomFields()
Deprecated.Obtain a map with the custom fields of this instance.- Returns:
- Not null map of custom fields. Empty if no custom fields are specified. Key (String) is the custom field's name, Value (String) is the custom field's value.
-
-