I have
Field f = this.getClass().getFields()[0];
I need to know if f's value in this is null or not. There are many methods like getInt() and getDouble(), but I have not found a method like Object getData() or isNull(). Is there such a method?
if (f == null){/*do stuff*/}– gotomanners Nov 22 '11 at 14:17