FtsOptions
open class FtsOptions
kotlin.Any | |
↳ | androidx.room.FtsOptions |
Available option values that can be used with Fts3
& Fts4
.
Summary
Nested classes | |
---|---|
Constants | |
---|---|
static String |
The name of a tokenizer implemented by the ICU library. |
static String |
The name of the tokenizer based on the Porter Stemming Algorithm. |
static String |
The name of the default tokenizer used on FTS tables. |
static String |
The name of the tokenizer that extends the |
Constants
TOKENIZER_ICU
static val TOKENIZER_ICU: String
The name of a tokenizer implemented by the ICU library.
Not available in certain Android builds (e.g. vendor).
Value: "icu"
See Also
TOKENIZER_PORTER
static val TOKENIZER_PORTER: String
The name of the tokenizer based on the Porter Stemming Algorithm.
Value: "porter"
See Also
TOKENIZER_SIMPLE
static val TOKENIZER_SIMPLE: String
The name of the default tokenizer used on FTS tables.
Value: "simple"
See Also
TOKENIZER_UNICODE61
@RequiresApi(21) static val TOKENIZER_UNICODE61: String
The name of the tokenizer that extends the TOKENIZER_SIMPLE
tokenizer according to rules in Unicode Version 6.1.
Value: "unicode61"
See Also