So, should be straight forward question.
Lets say I have a class with a lot of fields like:
String thizz;
long that;
boolean bar;
How can I, with reflection, see if the fields thizz, that and bar have been initialized or left to their default values of null, 0 and false?
You have only 7 primitive types and one reference type to check. If you group all Number types together, you only have four values to check for.