public Object get(String pFieldName) { if (!(mFormat.containsField(pFieldName))) { throw new RuntimeException("No such field: " + pFieldName); } int fieldInd = mFormat.getFieldIndex(pFieldName); return get(fieldInd); }
public void set(String pFieldName, Object pVal) { if (!(mFormat.containsField(pFieldName))) { throw new RuntimeException("No such field: " + pFieldName); } int fieldInd = mFormat.getFieldIndex(pFieldName); set(fieldInd, pVal); }
public void removeField(String pFieldName) { int index = mFormat.getFieldIndex(pFieldName); mFormat = mFormat.removeField(index); remove(index); }