MCPcopy Index your code
hub / github.com/apache/groovy / singletonList

Method singletonList

subprojects/groovy-sql/src/main/java/groovy/sql/Sql.java:1371–1375  ·  view source on GitHub ↗
(Object item)

Source from the content-addressed store, hash-verified

1369 }
1370
1371 private static ArrayList<Object> singletonList(Object item) {
1372 ArrayList<Object> params = new ArrayList<>();
1373 params.add(item);
1374 return params;
1375 }
1376
1377 /**
1378 * Performs the given SQL query, which should return a single

Callers 15

queryMethod · 0.95
eachRowMethod · 0.95
rowsMethod · 0.95
firstRowMethod · 0.95
executeMethod · 0.95
executeInsertMethod · 0.95
executeUpdateMethod · 0.95
callMethod · 0.95
callWithRowsMethod · 0.95
callWithAllRowsMethod · 0.95
MatchingHighlighterClass · 0.80
catMethod · 0.80

Calls 1

addMethod · 0.65