Lines Matching refs:field
51 public Object getValue(Field field, Object obj, char type, in getValue() argument
57 result = field.getBoolean(obj); in getValue()
60 result = field.getByte(obj); in getValue()
63 result = field.getShort(obj); in getValue()
66 result = field.getChar(obj); in getValue()
69 result = field.getInt(obj); in getValue()
72 result = field.getLong(obj); in getValue()
75 result = field.getFloat(obj); in getValue()
78 result = field.getDouble(obj); in getValue()
81 result = field.get(obj); in getValue()
89 System.err.println("ERROR: call succeeded for field " + field + in getValue()
625 public Object getValue(Field field, Object obj, char type, in getValue() argument
631 result = field.getBoolean(obj); in getValue()
634 result = field.getByte(obj); in getValue()
637 result = field.getShort(obj); in getValue()
640 result = field.getChar(obj); in getValue()
643 result = field.getInt(obj); in getValue()
646 result = field.getLong(obj); in getValue()
649 result = field.getFloat(obj); in getValue()
652 result = field.getDouble(obj); in getValue()
655 result = field.get(obj); in getValue()
663 System.err.println("ERROR: call succeeded for field " + field + in getValue()