Package org.teamapps.data.extract
Class BeanPropertyInjector<RECORD>
- java.lang.Object
-
- org.teamapps.data.extract.BeanPropertyInjector<RECORD>
-
- All Implemented Interfaces:
PropertyInjector<RECORD>
public class BeanPropertyInjector<RECORD> extends java.lang.Object implements PropertyInjector<RECORD>
-
-
Constructor Summary
Constructors Constructor Description BeanPropertyInjector()BeanPropertyInjector(boolean fallbackToFields)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <VALUE> BeanPropertyInjector<RECORD>addProperty(java.lang.String propertyName, ValueInjector<RECORD,VALUE> valueInjector)voidsetValue(RECORD record, java.lang.String propertyName, java.lang.Object value)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.teamapps.data.extract.PropertyInjector
setValues
-
-
-
-
Method Detail
-
setValue
public void setValue(RECORD record, java.lang.String propertyName, java.lang.Object value)
- Specified by:
setValuein interfacePropertyInjector<RECORD>
-
addProperty
public <VALUE> BeanPropertyInjector<RECORD> addProperty(java.lang.String propertyName, ValueInjector<RECORD,VALUE> valueInjector)
-
-