Package com.microsoft.azure.kusto.data
Class KustoResultMapper<R>
- java.lang.Object
-
- com.microsoft.azure.kusto.data.KustoResultMapper<R>
-
- Type Parameters:
R- pojo type returned by the mapping
public class KustoResultMapper<R> extends Object
A class for mapping Kusto results to a list of pojos
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classKustoResultMapper.Builder<R>
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<R>extractList(KustoResultSetTable resultSet)RextractSingle(KustoResultSetTable resultSet)static <R> KustoResultMapper.Builder<R>newBuilder(Supplier<R> objConstructor)
-
-
-
Method Detail
-
newBuilder
public static <R> KustoResultMapper.Builder<R> newBuilder(Supplier<R> objConstructor)
-
extractSingle
public R extractSingle(KustoResultSetTable resultSet)
-
extractList
public List<R> extractList(KustoResultSetTable resultSet)
-
-