Interface CursorResult
-
- All Superinterfaces:
EnrichedResult,Result
public interface CursorResult extends EnrichedResult
Result for a list of values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> MappableCursor<T>transform(Function<Row,T> f)Transforms rows to expected types.-
Methods inherited from interface technology.openpool.ldap.adapter.api.database.result.EnrichedResult
getColumns
-
-
-
-
Method Detail
-
transform
<T> MappableCursor<T> transform(Function<Row,T> f)
Transforms rows to expected types.- Parameters:
f- the function used to map a single row- Returns:
- the iterator for values of an expected type
-
-