app / de.uniks.codliners.stock_simulator.database / SymbolDao / getAllFiltered

getAllFiltered

abstract fun getAllFiltered(symbolQuery: String, nameQuery: String, type: Type): LiveData<List<Symbol>>

Returns all Symbols matching the query parameters, wrapped in LiveData.

Parameters

symbolQuery - The symbol fragment used in this query.

nameQuery - The name fragment used in this query.

type - The Symbol.Type used in this query.

Return
LiveData containing a List of all Symbols matching the query parameters.

abstract fun getAllFiltered(symbolQuery: String, nameQuery: String): LiveData<List<Symbol>>

Returns all Symbols matching the query parameters, wrapped in LiveData.

Parameters

symbolQuery - The symbol fragment used in this query.

nameQuery - The name fragment used in this query.

Return
LiveData containing a List of all Symbols matching the query parameters.