Lines Matching refs:result
54 Object result = null; in getValue() local
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()
110 return result; in getValue()
286 Object result = null; in getValue() local
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()
342 return result; in getValue()