Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
if (f == null){/*do stuff*/} – gotomanners Nov 22 '11 at 14:17

4 Answers

up vote 7 down vote accepted

field.get(target) returns Object. So you can checkif (field.get(this) == null) {..}

If the field is primitive, it will get wrapped. int -> Integer, char -> Character, etc.

share|improve this answer

You need to get the field from the object then check if it is null

Field f = this.getClass().getFields()[0];
if (f.get(this) == null)
  ...
share|improve this answer
and what if it has a primitive type? – shift66 Nov 22 '11 at 14:26
it will get wrapped – Bozho Nov 22 '11 at 14:30

You didn't search well enough: http://download.oracle.com/javase/6/docs/api/java/lang/reflect/Field.html#get%28java.lang.Object%29

Call this method, and check if the returned object is null.

share|improve this answer

use Object obj=f.get(this) and check whether the returned object(in this case obj) is null or not

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.