🚚
Jodd Proxetta
  • Proxetta
  • Pointcuts
  • Advices
  • Proxy
  • Wrapper
  • Invocation replacement
  • Paramo
    • Paramo
  • Refs
    • Methref
    • Pathref
Powered by GitBook
On this page
Export as PDF
  1. Refs

Pathref

Similar to Methref, the Pathref returns the bean path of the property. The usage is very similar:

Pathref<User> p = Pathref.on(User.class);

p.path(p.to()
    .getFriends()
    .get(2)
    .getAddress()
    .getStreet());        // friends[2].address.street

Bean path can be used later in reading the property using e.g. BeanUtil.

PreviousMethref

Last updated 4 years ago