MCPcopy Index your code
hub / github.com/wyouflf/xUtils3 / getBindArgs

Method getBindArgs

xutils/src/main/java/org/xutils/db/sqlite/SqlInfo.java:99–108  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

97 }
98
99 public Object[] getBindArgs() {
100 Object[] result = null;
101 if (bindArgs != null) {
102 result = new Object[bindArgs.size()];
103 for (int i = 0; i < bindArgs.size(); i++) {
104 result[i] = ColumnUtils.convert2DbValueIfNeeded(bindArgs.get(i).value);
105 }
106 }
107 return result;
108 }
109
110 public String[] getBindArgsAsStrArray() {
111 String[] result = null;

Callers

nothing calls this directly

Calls 3

getMethod · 0.65
sizeMethod · 0.45

Tested by

no test coverage detected