Find link

language:

jump to random article

Find link is a tool written by Edward Betts.

searching for Helper class 3 found (7 total)

alternate case: helper class

Double-checked locking (2,142 words) [view diff] no match in snippet view article find links to article

MethodHandles.lookup(); HELPER = lookup.findVarHandle(Foo.class, "helper", Helper.class); } catch (ReflectiveOperationException e) { throw new ExceptionInInitializerError(e);
Mixin (3,259 words) [view diff] exact match in snippet view article find links to article
without modifying the class. It then becomes possible to create a static helper class for specific functionality that defines the extension methods. Because
Extension method (2,521 words) [view diff] exact match in snippet view article find links to article
derived class. Implement the functionality in a static method added to a helper class. Use aggregation instead of inheritance. The first option is in principle