QueryBuilder
A builder containing predicates to filter data with.
Functions
Link copied to clipboard
open fun <R : CharSequence> KProperty1<T, R>.contains(text: CharSequence, ignoreCase: Boolean = false)
Includes only values for which the given property contains the given text.
Link copied to clipboard
open fun <R : CharSequence> KProperty1<T, R>.endsWith(postFix: CharSequence, ignoreCase: Boolean = false)
Includes only values for which the given property ends with the given postFix.
Link copied to clipboard
Includes only values for which the given property is greater than the given value.
Link copied to clipboard
Includes only values for which the given property is greater than or equal to the given value.
Link copied to clipboard
Includes only values for which the given property is lesser than the given value.
Link copied to clipboard
Includes only values for which the given property is lesser than or equal to the given value.
Link copied to clipboard
open fun <R : CharSequence> KProperty1<T, R>.startsWith(prefix: CharSequence, ignoreCase: Boolean = false)
Includes only values for which the given property starts with the given prefix.