Class ArrayFunctions
- java.lang.Object
-
- com.couchbase.client.java.query.dsl.functions.ArrayFunctions
-
@Experimental @Public public class ArrayFunctions extends Object
DSL for N1QL functions in the Array category. You can use array functions to evaluate arrays, perform computations on elements in an array, and to return a new array based on a transformation.- Since:
- 2.2
- Author:
- Simon Baslé
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExpressionarrayAppend(JsonArray array, Expression value)Returned expression results in new array with value appended.static ExpressionarrayAppend(Expression expression, Expression value)Returned expression results in new array with value appended.static ExpressionarrayAppend(String expression, Expression value)Returned expression results in new array with value appended.static ExpressionarrayAvg(JsonArray array)Returned expression results in arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.static ExpressionarrayAvg(Expression expression)Returned expression results in arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.static ExpressionarrayAvg(String expression)Returned expression results in arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.static ExpressionarrayConcat(JsonArray array1, JsonArray array2)Returned expression results in new array with the concatenation of the input arrays.static ExpressionarrayConcat(Expression expression1, Expression expression2)Returned expression results in new array with the concatenation of the input arrays.static ExpressionarrayConcat(String expression1, String expression2)Returned expression results in new array with the concatenation of the input arrays.static ExpressionarrayContains(JsonArray array, Expression value)Returned expression results in true if the array contains value.static ExpressionarrayContains(Expression expression, Expression value)Returned expression results in true if the array contains value.static ExpressionarrayContains(String expression, Expression value)Returned expression results in true if the array contains value.static ExpressionarrayCount(JsonArray array)Returned expression results in count of all the non-NULL values in the array, or zero if there are no such values.static ExpressionarrayCount(Expression expression)Returned expression results in count of all the non-NULL values in the array, or zero if there are no such values.static ExpressionarrayCount(String expression)Returned expression results in count of all the non-NULL values in the array, or zero if there are no such values.static ExpressionarrayDistinct(JsonArray array)Returned expression results in new array with distinct elements of input array.static ExpressionarrayDistinct(Expression expression)Returned expression results in new array with distinct elements of input array.static ExpressionarrayDistinct(String expression)Returned expression results in new array with distinct elements of input array.static ExpressionarrayIfNull(JsonArray array)Returned expression results in the first non-NULL value in the array, or NULL.static ExpressionarrayIfNull(Expression expression)Returned expression results in the first non-NULL value in the array, or NULL.static ExpressionarrayIfNull(String expression)Returned expression results in the first non-NULL value in the array, or NULL.static ExpressionarrayLength(JsonArray array)Returned expression results in the number of elements in the array.static ExpressionarrayLength(Expression expression)Returned expression results in the number of elements in the array.static ExpressionarrayLength(String expression)Returned expression results in the number of elements in the array.static ExpressionarrayMax(JsonArray array)Returned expression results in the largest non-NULL, non-MISSING array element, in N1QL collation order.static ExpressionarrayMax(Expression expression)Returned expression results in the largest non-NULL, non-MISSING array element, in N1QL collation order.static ExpressionarrayMax(String expression)Returned expression results in the largest non-NULL, non-MISSING array element, in N1QL collation order.static ExpressionarrayMin(JsonArray array)Returned expression results in the smallest non-NULL, non-MISSING array element, in N1QL collation order.static ExpressionarrayMin(Expression expression)Returned expression results in the smallest non-NULL, non-MISSING array element, in N1QL collation order.static ExpressionarrayMin(String expression)Returned expression results in the smallest non-NULL, non-MISSING array element, in N1QL collation order.static ExpressionarrayPosition(JsonArray array, Expression value)Returned expression results in the first position of value within the array, or -1.static ExpressionarrayPosition(Expression expression, Expression value)Returned expression results in the first position of value within the array, or -1.static ExpressionarrayPosition(String expression, Expression value)Returned expression results in the first position of value within the array, or -1.static ExpressionarrayPrepend(JsonArray array, Expression value)Returned expression results in the new array with value pre-pended.static ExpressionarrayPrepend(Expression expression, Expression value)Returned expression results in the new array with value pre-pended.static ExpressionarrayPrepend(String expression, Expression value)Returned expression results in the new array with value pre-pended.static ExpressionarrayPut(JsonArray array, Expression value)Returned expression results in new array with value appended, if value is not already present, otherwise the unmodified input array.static ExpressionarrayPut(Expression expression, Expression value)Returned expression results in new array with value appended, if value is not already present, otherwise the unmodified input array.static ExpressionarrayPut(String expression, Expression value)Returned expression results in new array with value appended, if value is not already present, otherwise the unmodified input array.static ExpressionarrayRange(long start, long end)Returned expression results in new array of numbers, from start until the largest number less than end.static ExpressionarrayRange(long start, long end, long step)Returned expression results in new array of numbers, from start until the largest number less than end.static ExpressionarrayRemove(JsonArray array, Expression value)Returned expression results in new array with all occurrences of value removed.static ExpressionarrayRemove(Expression expression, Expression value)Returned expression results in new array with all occurrences of value removed.static ExpressionarrayRemove(String expression, Expression value)Returned expression results in new array with all occurrences of value removed.static ExpressionarrayRepeat(boolean value, long n)Returned expression results in new array with value repeated n times.static ExpressionarrayRepeat(Expression value, long n)Returned expression results in new array with value repeated n times.static ExpressionarrayRepeat(Number value, long n)Returned expression results in new array with value repeated n times.static ExpressionarrayRepeat(String value, long n)Returned expression results in new array with the string "value" repeated n times.static ExpressionarrayReplace(JsonArray array, Expression value1, Expression value2)Returned expression results in new array with all occurrences of value1 replaced by value2.static ExpressionarrayReplace(JsonArray array, Expression value1, Expression value2, long n)Returned expression results in new array with at most n occurrences of value1 replaced with value2.static ExpressionarrayReplace(Expression expression, Expression value1, Expression value2)Returned expression results in new array with all occurrences of value1 replaced by value2.static ExpressionarrayReplace(Expression expression, Expression value1, Expression value2, long n)Returned expression results in new array with at most n occurrences of value1 replaced with value2.static ExpressionarrayReplace(String expression, Expression value1, Expression value2)Returned expression results in new array with all occurrences of value1 replaced by value2.static ExpressionarrayReplace(String expression, Expression value1, Expression value2, long n)Returned expression results in new array with at most n occurrences of value1 replaced with value2.static ExpressionarrayReverse(JsonArray array)Returned expression results in new array with all elements in reverse order.static ExpressionarrayReverse(Expression expression)Returned expression results in new array with all elements in reverse order.static ExpressionarrayReverse(String expression)Returned expression results in new array with all elements in reverse order.static ExpressionarraySort(JsonArray array)Returned expression results in new array with elements sorted in N1QL collation order.static ExpressionarraySort(Expression expression)Returned expression results in new array with elements sorted in N1QL collation order.static ExpressionarraySort(String expression)Returned expression results in new array with elements sorted in N1QL collation order.static ExpressionarraySum(JsonArray array)Returned expression results in the sum of all the non-NULL number values in the array, or zero if there are no such values.static ExpressionarraySum(Expression expression)Returned expression results in the sum of all the non-NULL number values in the array, or zero if there are no such values.static ExpressionarraySum(String expression)Returned expression results in the sum of all the non-NULL number values in the array, or zero if there are no such values.
-
-
-
Method Detail
-
arrayAppend
public static Expression arrayAppend(Expression expression, Expression value)
Returned expression results in new array with value appended.
-
arrayAppend
public static Expression arrayAppend(String expression, Expression value)
Returned expression results in new array with value appended.
-
arrayAppend
public static Expression arrayAppend(JsonArray array, Expression value)
Returned expression results in new array with value appended.
-
arrayAvg
public static Expression arrayAvg(Expression expression)
Returned expression results in arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.
-
arrayAvg
public static Expression arrayAvg(String expression)
Returned expression results in arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.
-
arrayAvg
public static Expression arrayAvg(JsonArray array)
Returned expression results in arithmetic mean (average) of all the non-NULL number values in the array, or NULL if there are no such values.
-
arrayConcat
public static Expression arrayConcat(Expression expression1, Expression expression2)
Returned expression results in new array with the concatenation of the input arrays.
-
arrayConcat
public static Expression arrayConcat(String expression1, String expression2)
Returned expression results in new array with the concatenation of the input arrays.
-
arrayConcat
public static Expression arrayConcat(JsonArray array1, JsonArray array2)
Returned expression results in new array with the concatenation of the input arrays.
-
arrayContains
public static Expression arrayContains(Expression expression, Expression value)
Returned expression results in true if the array contains value.
-
arrayContains
public static Expression arrayContains(String expression, Expression value)
Returned expression results in true if the array contains value.
-
arrayContains
public static Expression arrayContains(JsonArray array, Expression value)
Returned expression results in true if the array contains value.
-
arrayCount
public static Expression arrayCount(Expression expression)
Returned expression results in count of all the non-NULL values in the array, or zero if there are no such values.
-
arrayCount
public static Expression arrayCount(String expression)
Returned expression results in count of all the non-NULL values in the array, or zero if there are no such values.
-
arrayCount
public static Expression arrayCount(JsonArray array)
Returned expression results in count of all the non-NULL values in the array, or zero if there are no such values.
-
arrayDistinct
public static Expression arrayDistinct(Expression expression)
Returned expression results in new array with distinct elements of input array.
-
arrayDistinct
public static Expression arrayDistinct(String expression)
Returned expression results in new array with distinct elements of input array.
-
arrayDistinct
public static Expression arrayDistinct(JsonArray array)
Returned expression results in new array with distinct elements of input array.
-
arrayIfNull
public static Expression arrayIfNull(Expression expression)
Returned expression results in the first non-NULL value in the array, or NULL.
-
arrayIfNull
public static Expression arrayIfNull(String expression)
Returned expression results in the first non-NULL value in the array, or NULL.
-
arrayIfNull
public static Expression arrayIfNull(JsonArray array)
Returned expression results in the first non-NULL value in the array, or NULL.
-
arrayLength
public static Expression arrayLength(Expression expression)
Returned expression results in the number of elements in the array.
-
arrayLength
public static Expression arrayLength(String expression)
Returned expression results in the number of elements in the array.
-
arrayLength
public static Expression arrayLength(JsonArray array)
Returned expression results in the number of elements in the array.
-
arrayMax
public static Expression arrayMax(Expression expression)
Returned expression results in the largest non-NULL, non-MISSING array element, in N1QL collation order.
-
arrayMax
public static Expression arrayMax(String expression)
Returned expression results in the largest non-NULL, non-MISSING array element, in N1QL collation order.
-
arrayMax
public static Expression arrayMax(JsonArray array)
Returned expression results in the largest non-NULL, non-MISSING array element, in N1QL collation order.
-
arrayMin
public static Expression arrayMin(Expression expression)
Returned expression results in the smallest non-NULL, non-MISSING array element, in N1QL collation order.
-
arrayMin
public static Expression arrayMin(String expression)
Returned expression results in the smallest non-NULL, non-MISSING array element, in N1QL collation order.
-
arrayMin
public static Expression arrayMin(JsonArray array)
Returned expression results in the smallest non-NULL, non-MISSING array element, in N1QL collation order.
-
arrayPosition
public static Expression arrayPosition(Expression expression, Expression value)
Returned expression results in the first position of value within the array, or -1. Array position is zero-based, i.e. the first position is 0.
-
arrayPosition
public static Expression arrayPosition(String expression, Expression value)
Returned expression results in the first position of value within the array, or -1. Array position is zero-based, i.e. the first position is 0.
-
arrayPosition
public static Expression arrayPosition(JsonArray array, Expression value)
Returned expression results in the first position of value within the array, or -1. Array position is zero-based, i.e. the first position is 0.
-
arrayPrepend
public static Expression arrayPrepend(Expression expression, Expression value)
Returned expression results in the new array with value pre-pended.
-
arrayPrepend
public static Expression arrayPrepend(String expression, Expression value)
Returned expression results in the new array with value pre-pended.
-
arrayPrepend
public static Expression arrayPrepend(JsonArray array, Expression value)
Returned expression results in the new array with value pre-pended.
-
arrayPut
public static Expression arrayPut(Expression expression, Expression value)
Returned expression results in new array with value appended, if value is not already present, otherwise the unmodified input array.
-
arrayPut
public static Expression arrayPut(String expression, Expression value)
Returned expression results in new array with value appended, if value is not already present, otherwise the unmodified input array.
-
arrayPut
public static Expression arrayPut(JsonArray array, Expression value)
Returned expression results in new array with value appended, if value is not already present, otherwise the unmodified input array.
-
arrayRange
public static Expression arrayRange(long start, long end, long step)
Returned expression results in new array of numbers, from start until the largest number less than end. Successive numbers are incremented by step. If step is omitted, the default is 1. If step is negative, decrements until the smallest number greater than end.
-
arrayRange
public static Expression arrayRange(long start, long end)
Returned expression results in new array of numbers, from start until the largest number less than end. Successive numbers are incremented by 1.
-
arrayRemove
public static Expression arrayRemove(Expression expression, Expression value)
Returned expression results in new array with all occurrences of value removed.
-
arrayRemove
public static Expression arrayRemove(String expression, Expression value)
Returned expression results in new array with all occurrences of value removed.
-
arrayRemove
public static Expression arrayRemove(JsonArray array, Expression value)
Returned expression results in new array with all occurrences of value removed.
-
arrayRepeat
public static Expression arrayRepeat(Expression value, long n)
Returned expression results in new array with value repeated n times.
-
arrayRepeat
public static Expression arrayRepeat(String value, long n)
Returned expression results in new array with the string "value" repeated n times.
-
arrayRepeat
public static Expression arrayRepeat(Number value, long n)
Returned expression results in new array with value repeated n times.
-
arrayRepeat
public static Expression arrayRepeat(boolean value, long n)
Returned expression results in new array with value repeated n times.
-
arrayReplace
public static Expression arrayReplace(Expression expression, Expression value1, Expression value2)
Returned expression results in new array with all occurrences of value1 replaced by value2.
-
arrayReplace
public static Expression arrayReplace(String expression, Expression value1, Expression value2)
Returned expression results in new array with all occurrences of value1 replaced by value2.
-
arrayReplace
public static Expression arrayReplace(JsonArray array, Expression value1, Expression value2)
Returned expression results in new array with all occurrences of value1 replaced by value2.
-
arrayReplace
public static Expression arrayReplace(Expression expression, Expression value1, Expression value2, long n)
Returned expression results in new array with at most n occurrences of value1 replaced with value2.
-
arrayReplace
public static Expression arrayReplace(String expression, Expression value1, Expression value2, long n)
Returned expression results in new array with at most n occurrences of value1 replaced with value2.
-
arrayReplace
public static Expression arrayReplace(JsonArray array, Expression value1, Expression value2, long n)
Returned expression results in new array with at most n occurrences of value1 replaced with value2.
-
arrayReverse
public static Expression arrayReverse(Expression expression)
Returned expression results in new array with all elements in reverse order.
-
arrayReverse
public static Expression arrayReverse(String expression)
Returned expression results in new array with all elements in reverse order.
-
arrayReverse
public static Expression arrayReverse(JsonArray array)
Returned expression results in new array with all elements in reverse order.
-
arraySort
public static Expression arraySort(Expression expression)
Returned expression results in new array with elements sorted in N1QL collation order.
-
arraySort
public static Expression arraySort(String expression)
Returned expression results in new array with elements sorted in N1QL collation order.
-
arraySort
public static Expression arraySort(JsonArray array)
Returned expression results in new array with elements sorted in N1QL collation order.
-
arraySum
public static Expression arraySum(Expression expression)
Returned expression results in the sum of all the non-NULL number values in the array, or zero if there are no such values.
-
arraySum
public static Expression arraySum(String expression)
Returned expression results in the sum of all the non-NULL number values in the array, or zero if there are no such values.
-
arraySum
public static Expression arraySum(JsonArray array)
Returned expression results in the sum of all the non-NULL number values in the array, or zero if there are no such values.
-
-