Package com.couchbase.lite
Class PredictionFunction
- java.lang.Object
-
- com.couchbase.lite.Expression
-
- com.couchbase.lite.PredictionFunction
-
public final class PredictionFunction extends Expression
ENTERPRISE EDITION API
PredictionFunction that allows to create an expression that refers to one of the properties of the prediction result dictionary.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Expression
propertyPath(java.lang.String path)
Creates a property expression that refers to a property of the prediction result dictionary.-
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
-
propertyPath
@NonNull public Expression propertyPath(@NonNull java.lang.String path)
Creates a property expression that refers to a property of the prediction result dictionary.- Parameters:
path
- The path to the property.- Returns:
- The property expression referring to a property of the prediction dictionary result.
-
-