Interface PointDataSource.PointDataProcessor
Package com.here.sdk.mapview.datasource
Interface PointDataSource.PointDataProcessor
-
- Enclosing class:
- PointDataSource
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface PointDataSource.PointDataProcessorCalled for each point, allowing inspection, removal or update of coordinates and attributes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanprocess(PointDataAccessor pointAccessor)Called for each point, allowing inspection, removal or update of coordinates and attributes.
-
-
-
Method Detail
-
process
boolean process(@NonNull PointDataAccessor pointAccessor)Called for each point, allowing inspection, removal or update of coordinates and attributes.
- Parameters:
pointAccessor-the point data accessor.
- Returns:
value indicating the result of the processing.
-
-