null
6061626364656667
public <T> T getFieldNotNull(int pos){ T field = getField(pos); if (field != null) { return field; } else { throw new NullFieldException(pos); } }
9293949596979899100
for (int i = 0; i < arity; i++) { Object o = value.getField(i); try { fieldSerializers[i].serialize(o, target); } catch (NullPointerException npex) { throw new NullFieldException(i); } } }