Skip to content

Commit 891cefd

Browse files
committed
More expression work
1 parent 8817f81 commit 891cefd

File tree

2 files changed

+131
-43
lines changed

2 files changed

+131
-43
lines changed

firebase-firestore/api.txt

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,12 +1128,12 @@ package com.google.firebase.firestore.pipeline {
11281128
method public final com.google.firebase.firestore.pipeline.Expr round();
11291129
method public static final com.google.firebase.firestore.pipeline.Expr round(com.google.firebase.firestore.pipeline.Expr numericExpr);
11301130
method public static final com.google.firebase.firestore.pipeline.Expr round(String numericField);
1131-
method public final com.google.firebase.firestore.pipeline.Expr roundToDecimal(com.google.firebase.firestore.pipeline.Expr decimalPlace);
1132-
method public static final com.google.firebase.firestore.pipeline.Expr roundToDecimal(com.google.firebase.firestore.pipeline.Expr numericExpr, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1133-
method public static final com.google.firebase.firestore.pipeline.Expr roundToDecimal(com.google.firebase.firestore.pipeline.Expr numericExpr, int decimalPlace);
1134-
method public final com.google.firebase.firestore.pipeline.Expr roundToDecimal(int decimalPlace);
1135-
method public static final com.google.firebase.firestore.pipeline.Expr roundToDecimal(String numericField, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1136-
method public static final com.google.firebase.firestore.pipeline.Expr roundToDecimal(String numericField, int decimalPlace);
1131+
method public final com.google.firebase.firestore.pipeline.Expr roundToPrecision(com.google.firebase.firestore.pipeline.Expr decimalPlace);
1132+
method public static final com.google.firebase.firestore.pipeline.Expr roundToPrecision(com.google.firebase.firestore.pipeline.Expr numericExpr, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1133+
method public static final com.google.firebase.firestore.pipeline.Expr roundToPrecision(com.google.firebase.firestore.pipeline.Expr numericExpr, int decimalPlace);
1134+
method public final com.google.firebase.firestore.pipeline.Expr roundToPrecision(int decimalPlace);
1135+
method public static final com.google.firebase.firestore.pipeline.Expr roundToPrecision(String numericField, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1136+
method public static final com.google.firebase.firestore.pipeline.Expr roundToPrecision(String numericField, int decimalPlace);
11371137
method public final com.google.firebase.firestore.pipeline.Expr sqrt();
11381138
method public static final com.google.firebase.firestore.pipeline.Expr sqrt(com.google.firebase.firestore.pipeline.Expr numericExpr);
11391139
method public static final com.google.firebase.firestore.pipeline.Expr sqrt(String numericField);
@@ -1143,16 +1143,16 @@ package com.google.firebase.firestore.pipeline {
11431143
method public final com.google.firebase.firestore.pipeline.BooleanExpr startsWith(String prefix);
11441144
method public static final com.google.firebase.firestore.pipeline.BooleanExpr startsWith(String fieldName, com.google.firebase.firestore.pipeline.Expr prefix);
11451145
method public static final com.google.firebase.firestore.pipeline.BooleanExpr startsWith(String fieldName, String prefix);
1146-
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr first, com.google.firebase.firestore.pipeline.Expr... rest);
1147-
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr first, java.lang.Object... rest);
1148-
method public final com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr... expr);
1149-
method public final com.google.firebase.firestore.pipeline.Expr strConcat(java.lang.Object... string);
1150-
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, com.google.firebase.firestore.pipeline.Expr... rest);
1151-
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, java.lang.Object... rest);
1152-
method public final com.google.firebase.firestore.pipeline.Expr strConcat(java.lang.String... string);
1146+
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr firstString, com.google.firebase.firestore.pipeline.Expr... otherStrings);
1147+
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr firstString, java.lang.Object... otherStrings);
1148+
method public final com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr... stringExpressions);
1149+
method public final com.google.firebase.firestore.pipeline.Expr strConcat(java.lang.Object... strings);
1150+
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, com.google.firebase.firestore.pipeline.Expr... otherStrings);
1151+
method public static final com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, java.lang.Object... otherStrings);
1152+
method public final com.google.firebase.firestore.pipeline.Expr strConcat(java.lang.String... strings);
11531153
method public final com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr substring);
1154-
method public static final com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr expr, com.google.firebase.firestore.pipeline.Expr substring);
1155-
method public static final com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr expr, String substring);
1154+
method public static final com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr stringExpression, com.google.firebase.firestore.pipeline.Expr substring);
1155+
method public static final com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr stringExpression, String substring);
11561156
method public final com.google.firebase.firestore.pipeline.BooleanExpr strContains(String substring);
11571157
method public static final com.google.firebase.firestore.pipeline.BooleanExpr strContains(String fieldName, com.google.firebase.firestore.pipeline.Expr substring);
11581158
method public static final com.google.firebase.firestore.pipeline.BooleanExpr strContains(String fieldName, String substring);
@@ -1414,22 +1414,22 @@ package com.google.firebase.firestore.pipeline {
14141414
method public com.google.firebase.firestore.pipeline.Expr reverse(String fieldName);
14151415
method public com.google.firebase.firestore.pipeline.Expr round(com.google.firebase.firestore.pipeline.Expr numericExpr);
14161416
method public com.google.firebase.firestore.pipeline.Expr round(String numericField);
1417-
method public com.google.firebase.firestore.pipeline.Expr roundToDecimal(com.google.firebase.firestore.pipeline.Expr numericExpr, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1418-
method public com.google.firebase.firestore.pipeline.Expr roundToDecimal(com.google.firebase.firestore.pipeline.Expr numericExpr, int decimalPlace);
1419-
method public com.google.firebase.firestore.pipeline.Expr roundToDecimal(String numericField, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1420-
method public com.google.firebase.firestore.pipeline.Expr roundToDecimal(String numericField, int decimalPlace);
1417+
method public com.google.firebase.firestore.pipeline.Expr roundToPrecision(com.google.firebase.firestore.pipeline.Expr numericExpr, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1418+
method public com.google.firebase.firestore.pipeline.Expr roundToPrecision(com.google.firebase.firestore.pipeline.Expr numericExpr, int decimalPlace);
1419+
method public com.google.firebase.firestore.pipeline.Expr roundToPrecision(String numericField, com.google.firebase.firestore.pipeline.Expr decimalPlace);
1420+
method public com.google.firebase.firestore.pipeline.Expr roundToPrecision(String numericField, int decimalPlace);
14211421
method public com.google.firebase.firestore.pipeline.Expr sqrt(com.google.firebase.firestore.pipeline.Expr numericExpr);
14221422
method public com.google.firebase.firestore.pipeline.Expr sqrt(String numericField);
14231423
method public com.google.firebase.firestore.pipeline.BooleanExpr startsWith(com.google.firebase.firestore.pipeline.Expr stringExpr, com.google.firebase.firestore.pipeline.Expr prefix);
14241424
method public com.google.firebase.firestore.pipeline.BooleanExpr startsWith(com.google.firebase.firestore.pipeline.Expr stringExpr, String prefix);
14251425
method public com.google.firebase.firestore.pipeline.BooleanExpr startsWith(String fieldName, com.google.firebase.firestore.pipeline.Expr prefix);
14261426
method public com.google.firebase.firestore.pipeline.BooleanExpr startsWith(String fieldName, String prefix);
1427-
method public com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr first, com.google.firebase.firestore.pipeline.Expr... rest);
1428-
method public com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr first, java.lang.Object... rest);
1429-
method public com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, com.google.firebase.firestore.pipeline.Expr... rest);
1430-
method public com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, java.lang.Object... rest);
1431-
method public com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr expr, com.google.firebase.firestore.pipeline.Expr substring);
1432-
method public com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr expr, String substring);
1427+
method public com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr firstString, com.google.firebase.firestore.pipeline.Expr... otherStrings);
1428+
method public com.google.firebase.firestore.pipeline.Expr strConcat(com.google.firebase.firestore.pipeline.Expr firstString, java.lang.Object... otherStrings);
1429+
method public com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, com.google.firebase.firestore.pipeline.Expr... otherStrings);
1430+
method public com.google.firebase.firestore.pipeline.Expr strConcat(String fieldName, java.lang.Object... otherStrings);
1431+
method public com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr stringExpression, com.google.firebase.firestore.pipeline.Expr substring);
1432+
method public com.google.firebase.firestore.pipeline.BooleanExpr strContains(com.google.firebase.firestore.pipeline.Expr stringExpression, String substring);
14331433
method public com.google.firebase.firestore.pipeline.BooleanExpr strContains(String fieldName, com.google.firebase.firestore.pipeline.Expr substring);
14341434
method public com.google.firebase.firestore.pipeline.BooleanExpr strContains(String fieldName, String substring);
14351435
method public com.google.firebase.firestore.pipeline.Expr subtract(com.google.firebase.firestore.pipeline.Expr minuend, com.google.firebase.firestore.pipeline.Expr subtrahend);

0 commit comments

Comments
 (0)