Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit 9711921

Browse files
committed
make docs consistent
1 parent 1fb1d9a commit 9711921

1 file changed

Lines changed: 33 additions & 33 deletions

File tree

  • google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expression.java

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1763,7 +1763,7 @@ public static Expression ltrimValue(String fieldName, Expression characters) {
17631763
}
17641764

17651765
/**
1766-
* Creates an expression that removes whitespace from the end of a string or byte array.
1766+
* Creates an expression that removes whitespace from the end of a string or blob.
17671767
*
17681768
* @param value The expression representing the string or blob to trim.
17691769
* @return A new {@link Expression} representing the trimmed string or blob.
@@ -1774,7 +1774,7 @@ public static Expression rtrim(Expression value) {
17741774
}
17751775

17761776
/**
1777-
* Creates an expression that removes trailing whitespace from a string or byte field.
1777+
* Creates an expression that removes whitespace from the end of a string or blob.
17781778
*
17791779
* @param fieldName The name of the field containing the string to trim.
17801780
* @return A new {@link Expression} representing the trimmed string.
@@ -1833,47 +1833,47 @@ public static Expression rtrimValue(String fieldName, Expression characters) {
18331833
}
18341834

18351835
/**
1836-
* Creates an expression that repeats a string or byte array a specified number of times.
1836+
* Creates an expression that repeats a string or blob a specified number of times.
18371837
*
1838-
* @param value The expression representing the string or byte array to repeat.
1839-
* @param repetitions The number of times to repeat the string or byte array.
1840-
* @return A new {@link Expression} representing the repeated string or byte array.
1838+
* @param value The expression representing the string or blob to repeat.
1839+
* @param repetitions The number of times to repeat the string or blob.
1840+
* @return A new {@link Expression} representing the repeated string or blob.
18411841
*/
18421842
@BetaApi
18431843
public static Expression stringRepeat(Expression value, Number repetitions) {
18441844
return new FunctionExpression("string_repeat", ImmutableList.of(value, constant(repetitions)));
18451845
}
18461846

18471847
/**
1848-
* Creates an expression that repeats a string or byte array a specified number of times.
1848+
* Creates an expression that repeats a string or blob a specified number of times.
18491849
*
1850-
* @param fieldName The name of the field containing the string or byte array to repeat.
1851-
* @param repetitions The number of times to repeat the string or byte array.
1852-
* @return A new {@link Expression} representing the repeated string or byte array.
1850+
* @param fieldName The name of the field containing the string or blob to repeat.
1851+
* @param repetitions The number of times to repeat the string or blob.
1852+
* @return A new {@link Expression} representing the repeated string or blob.
18531853
*/
18541854
@BetaApi
18551855
public static Expression stringRepeat(String fieldName, Number repetitions) {
18561856
return stringRepeat(field(fieldName), repetitions);
18571857
}
18581858

18591859
/**
1860-
* Creates an expression that repeats a string or byte array a specified number of times.
1860+
* Creates an expression that repeats a string or blob a specified number of times.
18611861
*
1862-
* @param value The expression representing the string or byte array to repeat.
1862+
* @param value The expression representing the string or blob to repeat.
18631863
* @param repetitions The expression representing the number of times to repeat.
1864-
* @return A new {@link Expression} representing the repeated string or byte array.
1864+
* @return A new {@link Expression} representing the repeated string or blob.
18651865
*/
18661866
@BetaApi
18671867
public static Expression stringRepeat(Expression value, Expression repetitions) {
18681868
return new FunctionExpression("string_repeat", ImmutableList.of(value, repetitions));
18691869
}
18701870

18711871
/**
1872-
* Creates an expression that repeats a string or byte array a specified number of times.
1872+
* Creates an expression that repeats a string or blob a specified number of times.
18731873
*
1874-
* @param fieldName The name of the field containing the string or byte array to repeat.
1874+
* @param fieldName The name of the field containing the string or blob to repeat.
18751875
* @param repetitions The expression representing the number of times to repeat.
1876-
* @return A new {@link Expression} representing the repeated string or byte array.
1876+
* @return A new {@link Expression} representing the repeated string or blob.
18771877
*/
18781878
@BetaApi
18791879
public static Expression stringRepeat(String fieldName, Expression repetitions) {
@@ -1883,7 +1883,7 @@ public static Expression stringRepeat(String fieldName, Expression repetitions)
18831883
/**
18841884
* Creates an expression that replaces all occurrences of a substring or byte sequence.
18851885
*
1886-
* @param value The expression representing the input string or byte array.
1886+
* @param value The expression representing the input string or blob.
18871887
* @param find The match pattern.
18881888
* @param replacement The replacement string/bytes.
18891889
* @return A new {@link Expression} representing the replaced value.
@@ -1897,7 +1897,7 @@ public static Expression stringReplaceAll(Expression value, String find, String
18971897
/**
18981898
* Creates an expression that replaces all occurrences of a substring or byte sequence.
18991899
*
1900-
* @param fieldName The name of the field containing the input string or byte array.
1900+
* @param fieldName The name of the field containing the input string or blob.
19011901
* @param find The match pattern.
19021902
* @param replacement The replacement string/bytes.
19031903
* @return A new {@link Expression} representing the replaced value.
@@ -1910,7 +1910,7 @@ public static Expression stringReplaceAll(String fieldName, String find, String
19101910
/**
19111911
* Creates an expression that replaces all occurrences of a substring or byte sequence.
19121912
*
1913-
* @param value The expression representing the input string or byte array.
1913+
* @param value The expression representing the input string or blob.
19141914
* @param find The expression representing the match pattern.
19151915
* @param replacement The expression representing the replacement value.
19161916
* @return A new {@link Expression} representing the replaced value.
@@ -1924,7 +1924,7 @@ public static Expression stringReplaceAll(
19241924
/**
19251925
* Creates an expression that replaces all occurrences of a substring or byte sequence.
19261926
*
1927-
* @param fieldName The name of the field containing the input string or byte array.
1927+
* @param fieldName The name of the field containing the input string or blob.
19281928
* @param find The expression representing the match pattern.
19291929
* @param replacement The expression representing the replacement value.
19301930
* @return A new {@link Expression} representing the replaced value.
@@ -1938,7 +1938,7 @@ public static Expression stringReplaceAll(
19381938
/**
19391939
* Creates an expression that replaces the first occurrence of a substring or byte sequence.
19401940
*
1941-
* @param value The expression representing the input string or byte array.
1941+
* @param value The expression representing the input string or blob.
19421942
* @param find The match pattern.
19431943
* @param replacement The replacement string/bytes.
19441944
* @return A new {@link Expression} representing the replaced value.
@@ -1952,7 +1952,7 @@ public static Expression stringReplaceOne(Expression value, String find, String
19521952
/**
19531953
* Creates an expression that replaces the first occurrence of a substring or byte sequence.
19541954
*
1955-
* @param fieldName The name of the field containing the input string or byte array.
1955+
* @param fieldName The name of the field containing the input string or blob.
19561956
* @param find The match pattern.
19571957
* @param replacement The replacement string/bytes.
19581958
* @return A new {@link Expression} representing the replaced value.
@@ -1965,7 +1965,7 @@ public static Expression stringReplaceOne(String fieldName, String find, String
19651965
/**
19661966
* Creates an expression that replaces the first occurrence of a substring or byte sequence.
19671967
*
1968-
* @param value The expression representing the input string or byte array.
1968+
* @param value The expression representing the input string or blob.
19691969
* @param find The expression representing the match pattern.
19701970
* @param replacement The expression representing the replacement value.
19711971
* @return A new {@link Expression} representing the replaced value.
@@ -1979,7 +1979,7 @@ public static Expression stringReplaceOne(
19791979
/**
19801980
* Creates an expression that replaces the first occurrence of a substring or byte sequence.
19811981
*
1982-
* @param fieldName The name of the field containing the input string or byte array.
1982+
* @param fieldName The name of the field containing the input string or blob.
19831983
* @param find The expression representing the match pattern.
19841984
* @param replacement The expression representing the replacement value.
19851985
* @return A new {@link Expression} representing the replaced value.
@@ -1993,7 +1993,7 @@ public static Expression stringReplaceOne(
19931993
/**
19941994
* Creates an expression that returns the index of the first occurrence of a substring or bytes.
19951995
*
1996-
* @param value The expression representing the input string or byte array.
1996+
* @param value The expression representing the input string or blob.
19971997
* @param search The search pattern.
19981998
* @return A new {@link Expression} representing the index.
19991999
*/
@@ -2005,7 +2005,7 @@ public static Expression stringIndexOf(Expression value, String search) {
20052005
/**
20062006
* Creates an expression that returns the index of the first occurrence of a substring or bytes.
20072007
*
2008-
* @param fieldName The name of the field containing the input string or byte array.
2008+
* @param fieldName The name of the field containing the input string or blob.
20092009
* @param search The search pattern.
20102010
* @return A new {@link Expression} representing the index.
20112011
*/
@@ -2017,7 +2017,7 @@ public static Expression stringIndexOf(String fieldName, String search) {
20172017
/**
20182018
* Creates an expression that returns the index of the first occurrence of a substring or bytes.
20192019
*
2020-
* @param value The expression representing the input string or byte array.
2020+
* @param value The expression representing the input string or blob.
20212021
* @param search The expression representing the search pattern.
20222022
* @return A new {@link Expression} representing the index.
20232023
*/
@@ -2029,7 +2029,7 @@ public static Expression stringIndexOf(Expression value, Expression search) {
20292029
/**
20302030
* Creates an expression that returns the index of the first occurrence of a substring or bytes.
20312031
*
2032-
* @param fieldName The name of the field containing the input string or byte array.
2032+
* @param fieldName The name of the field containing the input string or blob.
20332033
* @param search The expression representing the search pattern.
20342034
* @return A new {@link Expression} representing the index.
20352035
*/
@@ -4557,21 +4557,21 @@ public Expression rtrimValue(Expression characters) {
45574557
}
45584558

45594559
/**
4560-
* Creates an expression that repeats a string or byte array a specified number of times.
4560+
* Creates an expression that repeats a string or blob a specified number of times.
45614561
*
4562-
* @param repetitions The number of times to repeat the string or byte array.
4563-
* @return A new {@link Expression} representing the repeated string or byte array.
4562+
* @param repetitions The number of times to repeat the string or blob.
4563+
* @return A new {@link Expression} representing the repeated string or blob.
45644564
*/
45654565
@BetaApi
45664566
public Expression stringRepeat(Number repetitions) {
45674567
return stringRepeat(this, repetitions);
45684568
}
45694569

45704570
/**
4571-
* Creates an expression that repeats a string or byte array a specified number of times.
4571+
* Creates an expression that repeats a string or blob a specified number of times.
45724572
*
45734573
* @param repetitions The expression representing the number of times to repeat.
4574-
* @return A new {@link Expression} representing the repeated string or byte array.
4574+
* @return A new {@link Expression} representing the repeated string or blob.
45754575
*/
45764576
@BetaApi
45774577
public Expression stringRepeat(Expression repetitions) {

0 commit comments

Comments
 (0)