(Object obj, String name)
| 1068 | } |
| 1069 | |
| 1070 | public static Field hasField(Object obj, String name) throws ReflectiveOperationException { |
| 1071 | return hasField(obj, name, null); |
| 1072 | } |
| 1073 | |
| 1074 | public static Field hasField(Object obj, String name, Class<?> type) throws ReflectiveOperationException { |
| 1075 | if (obj == null) { |