@@ -163,6 +163,8 @@ public Pair<ArrayList<ValueVector>, Integer> executeGenericArrow(GenericUDF gene
163
163
* @param arrayURI The array URI
164
164
* @param xPayer Name of organization or user who should be charged for this request
165
165
* @return The results as a String
166
+ * @apiNote is replaced by executeSingleArray(GenericUDF genericUDF, UDFArrayDetails array,
167
+ * QueryRanges queryRanges, String xPayer)
166
168
*/
167
169
public String executeSingleArray (MultiArrayUDF multiArrayUDF , HashMap <String , Object > arguments , String arrayURI , String xPayer ){
168
170
String serializedArgs = serializeArgs (arguments );
@@ -224,6 +226,8 @@ public String executeSingleArray(GenericUDF genericUDF, UDFArrayDetails array,
224
226
* @param arrayURI The array URI
225
227
* @param xPayer Name of organization or user who should be charged for this request
226
228
* @return The results as a JSON Object
229
+ * @apiNote Is replaced by executeSingleArrayJSON(GenericUDF genericUDF, UDFArrayDetails array,
230
+ * QueryRanges queryRanges, String xPayer)
227
231
*/
228
232
public JSONObject executeSingleArrayJSON (MultiArrayUDF multiArrayUDF , HashMap <String , Object > arguments , String arrayURI , String xPayer ){
229
233
multiArrayUDF .setResultFormat (ResultFormat .JSON );
@@ -275,6 +279,8 @@ public JSONObject executeSingleArrayJSON(GenericUDF genericUDF, UDFArrayDetails
275
279
* @param arrayURI The array URI
276
280
* @param xPayer Name of organization or user who should be charged for this request
277
281
* @return The results as a JSON array
282
+ * @apiNote Is replaced by executeSingleArrayJSONArray(GenericUDF genericUDF, UDFArrayDetails array,
283
+ * QueryRanges queryRanges, String xPayer)
278
284
*/
279
285
public JSONArray executeSingleArrayJSONArray (MultiArrayUDF multiArrayUDF , HashMap <String ,
280
286
Object > arguments , String arrayURI , String xPayer ){
@@ -326,6 +332,8 @@ public JSONArray executeSingleArrayJSONArray(GenericUDF genericUDF, UDFArrayDeta
326
332
* @param arrayURI The array URI
327
333
* @param xPayer Name of organization or user who should be charged for this request
328
334
* @return The results in arrow format
335
+ * @apiNote Is replaced by executeSingleArrayArrow(GenericUDF genericUDF, UDFArrayDetails array,
336
+ * QueryRanges queryRanges, String xPayer)
329
337
*/
330
338
public Pair <ArrayList <ValueVector >, Integer > executeSingleArrayArrow (MultiArrayUDF multiArrayUDF , HashMap <String , Object > arguments , String arrayURI , String xPayer ){
331
339
String serializedArgs = serializeArgs (arguments );
0 commit comments