| Package | Description | 
|---|---|
| com.github.erchu.beancp | Object to object mapping library. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | Binding. execute(Mapper mapper,
       Object source,
       Object destination)Copies value from source to destination. | 
| Object | BindingSide. getValue(Object object)Extracts value from passed object and returns it. | 
| <S,D> D | Mapper. map(S source,
   Class<D> destinationClass)Constructs destination object and copies data from source object to newly created destination
 object. | 
| <S,D> void | Mapper. map(S source,
   D destination)Copies data from source object to destination object. | 
| <S,D> Optional<D> | Mapper. mapIfMapperAvailable(S source,
                    Class<D> destinationClass)Constructs destination object and copies data from source object to newly created destination
 object. | 
| <S,D> boolean | Mapper. mapIfMapperAvailable(S source,
                    D destination)Copies data from source object to destination object. | 
| void | BindingSide. setValue(Object object,
        Object value)Sets value for passed object. | 
Copyright © 2014. All rights reserved.