Libraryless. Click here for Pure Java version (2815L/16K).
static <A> A set(A o, String field, Object value) { if (o == null) null; if (o instanceof Class) set((Class) o, field, value); else try { Field f = set_findField(o.getClass(), field); makeAccessible(f); smartSet(f, o, value); } catch (Exception e) { throw new RuntimeException(e); } ret o; } static void set(Class c, String field, Object value) { if (c == null) ret; try { Field f = set_findStaticField(c, field); makeAccessible(f); smartSet(f, null, value); } catch (Exception e) { throw new RuntimeException(e); } } static Field set_findStaticField(Class<?> c, String field) { Class _c = c; do { for (Field f : _c.getDeclaredFields()) if (f.getName().equals(field) && (f.getModifiers() & java.lang.reflect.Modifier.STATIC) != 0) return f; _c = _c.getSuperclass(); } while (_c != null); throw new RuntimeException("Static field '" + field + "' not found in " + c.getName()); } static Field set_findField(Class<?> c, String field) { Class _c = c; do { for (Field f : _c.getDeclaredFields()) if (f.getName().equals(field)) return f; _c = _c.getSuperclass(); } while (_c != null); throw new RuntimeException("Field '" + field + "' not found in " + c.getName()); } svoid set(BitSet bs, int idx) { bs?.set(idx); }
download show line numbers debug dex old transpilations
Travelled to 20 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, dpqxeycirhfy, ekrmjmnbrukm, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, ofpaelxlmzfo, onxytkatvevr, podlckwnjdmb, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
1 comment(s) hidden. show
Snippet ID: | #1000415 |
Snippet name: | "set" function (set field by reflection) |
Eternal ID of this version: | #1000415/10 |
Text MD5: | db6e606acc0f4e5d007860a82af356c6 |
Transpilation MD5: | 43c76b3f93a7c8b2411bf635397e0058 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2021-06-04 21:35:39 |
Source code size: | 1377 bytes / 49 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 1230 / 12225 |
Version history: | 9 change(s) |
Referenced in: | [show references] |