Package com.couchbase.lite
Class FullTextExpression
- java.lang.Object
-
- com.couchbase.lite.FullTextExpression
-
@Deprecated public final class FullTextExpression extends java.lang.Object
Deprecated.Use FullTextFunction.match()Full-text expression
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static FullTextExpression
index(java.lang.String name)
Deprecated.Use FullTextFunction.match()Expression
match(java.lang.String query)
Deprecated.Use FullTextFunction.match()
-
-
-
Method Detail
-
index
@Deprecated @NonNull public static FullTextExpression index(@NonNull java.lang.String name)
Deprecated.Use FullTextFunction.match()Creates a full-text expression with the given full-text index name.- Parameters:
name
- The full-text index name.- Returns:
- The full-text expression.
-
match
@Deprecated @NonNull public Expression match(@NonNull java.lang.String query)
Deprecated.Use FullTextFunction.match()Creates a full-text match expression with the given search text.- Parameters:
query
- The search text- Returns:
- The full-text match expression
-
-