Lines Matching refs:field
51 public Object getValue(Field field, Object obj, char type, in getValue() argument
58 result = new Boolean(field.getBoolean(obj)); in getValue()
61 result = new Byte(field.getByte(obj)); in getValue()
64 result = new Short(field.getShort(obj)); in getValue()
67 result = new Character(field.getChar(obj)); in getValue()
70 result = new Integer(field.getInt(obj)); in getValue()
73 result = new Long(field.getLong(obj)); in getValue()
76 result = new Float(field.getFloat(obj)); in getValue()
79 result = new Double(field.getDouble(obj)); in getValue()
82 result = field.get(obj); in getValue()
283 public Object getValue(Field field, Object obj, char type, in getValue() argument
290 result = new Boolean(field.getBoolean(obj)); in getValue()
293 result = new Byte(field.getByte(obj)); in getValue()
296 result = new Short(field.getShort(obj)); in getValue()
299 result = new Character(field.getChar(obj)); in getValue()
302 result = new Integer(field.getInt(obj)); in getValue()
305 result = new Long(field.getLong(obj)); in getValue()
308 result = new Float(field.getFloat(obj)); in getValue()
311 result = new Double(field.getDouble(obj)); in getValue()
314 result = field.get(obj); in getValue()