Skip to content
arnaudroger edited this page Dec 6, 2014 · 18 revisions

The rules

property name matching

inner object matching

list/array

Tuples

index discovery

Property Finder

The property matching is done by the PropertyFinder.

ClassMeta<MyObject> classMeta = new ReflectionService().getClassMeta(MyObject.class);
PropertyFinder<MyObject> propertyFinder = classMeta.newPropertyFinder();

PropertyMeta<MyObject, ?> prop = propertyFinder.findProperty("my_property");
Clone this wiki locally