Package com.couchbase.lite
Class MetaExpression
- java.lang.Object
-
- com.couchbase.lite.Expression
-
- com.couchbase.lite.MetaExpression
-
public class MetaExpression extends Expression
A meta property expression.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Expression
from(java.lang.String fromAlias)
Specifies an alias name of the data source to query the data from.-
Methods inherited from class com.couchbase.lite.Expression
add, all, and, between, booleanValue, collate, date, divide, doubleValue, equalTo, floatValue, greaterThan, greaterThanOrEqualTo, in, intValue, is, isNot, isNotValued, isNullOrMissing, isValued, lessThan, lessThanOrEqualTo, like, list, longValue, map, modulo, multiply, negated, not, notEqualTo, notNullOrMissing, number, or, parameter, property, regex, string, subtract, toString, value
-
-
-
-
Method Detail
-
from
@NonNull public Expression from(@NonNull java.lang.String fromAlias)
Specifies an alias name of the data source to query the data from.- Parameters:
fromAlias
- The data source alias name.- Returns:
- The Meta expression with the given alias name specified.
-
-