public abstract class DefaultGetResolver<T> extends GetResolver<T>
| Constructor and Description |
|---|
DefaultGetResolver() |
| Modifier and Type | Method and Description |
|---|---|
android.database.Cursor |
performGet(StorIOSQLite storIOSQLite,
Query query)
Performs get of results with passed query.
|
android.database.Cursor |
performGet(StorIOSQLite storIOSQLite,
RawQuery rawQuery)
Performs get of results with passed query.
|
mapFromCursor@NonNull
public android.database.Cursor performGet(@NonNull
StorIOSQLite storIOSQLite,
@NonNull
RawQuery rawQuery)
performGet in class GetResolver<T>storIOSQLite - StorIOSQLite instance to perform get from.rawQuery - query that should be performed.Cursor that can be empty
or contain data with results of Get Operation.@NonNull
public android.database.Cursor performGet(@NonNull
StorIOSQLite storIOSQLite,
@NonNull
Query query)
performGet in class GetResolver<T>storIOSQLite - StorIOSQLite instance to perform get from.query - query that should be performed.Cursor that can be empty
or contain data with results of Get Operation.