MCPcopy
hub / github.com/cinit/QAuxiliary / get

Method get

app/src/main/java/cc/ioctl/util/data/Table.java:390–399  ·  view source on GitHub ↗
(K key, String field)

Source from the content-addressed store, hash-verified

388 }
389
390 public Object get(K key, String field) throws NoSuchFieldException {
391 int i = getFieldId(field);
392 if (i < 0) {
393 throw new NoSuchFieldException(field);
394 }
395 if (!hasRecord(key)) {
396 throw new NoSuchElementException("key:" + key);
397 }
398 return records.get(key)[i];
399 }
400
401 public void set(K key, String field, Serializable val) throws NoSuchFieldException {
402 synchronized (this) {

Callers 15

initOnceMethod · 0.45
getCurrentActivityMethod · 0.45
detectHolidayMethod · 0.45
setWeatherGeneratorMethod · 0.45
onPauseMethod · 0.45
onResumeMethod · 0.45
onDestroyMethod · 0.45
getViewMethod · 0.45
doFindStepMethod · 0.45
afterHookedMethodMethod · 0.45
beforeHookedMethodMethod · 0.45

Calls 2

getFieldIdMethod · 0.95
hasRecordMethod · 0.95

Tested by

no test coverage detected