- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
28 lines
609 B
Java
28 lines
609 B
Java
package androidx.room;
|
|
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class FtsOptions {
|
|
public static final FtsOptions INSTANCE = new FtsOptions();
|
|
public static final String TOKENIZER_ICU = "icu";
|
|
public static final String TOKENIZER_PORTER = "porter";
|
|
public static final String TOKENIZER_SIMPLE = "simple";
|
|
|
|
@RequiresApi(21)
|
|
public static final String TOKENIZER_UNICODE61 = "unicode61";
|
|
|
|
public enum MatchInfo {
|
|
FTS3,
|
|
FTS4
|
|
}
|
|
|
|
public enum Order {
|
|
ASC,
|
|
DESC
|
|
}
|
|
|
|
private FtsOptions() {
|
|
}
|
|
}
|