Package io.ran
Interface Mapping
public interface Mapping
- 
Method Summary
Modifier and TypeMethodDescription_getKey()_getRelation(RelationDescriber relationDescriber) _getRelation(Token token) _getRelation(Object object, RelationDescriber relationDescriber) _getRelation(Object object, Token token) booleanvoid_setRelation(RelationDescriber relationDescriber, Object value) void_setRelationNotLoaded(RelationDescriber relationDescriber) voidvoidvoidcolumnize(ObjectMapColumnizer columnizer) voidcolumnize(Object obj, ObjectMapColumnizer columnizer) voidvoidhydrate(ObjectMapHydrator hydrator) Hydrate all fields of this mapping.voidhydrate(Object obj, ObjectMapHydrator hydrator) Hydrate all fields of this mapping into the target object.voidhydrateField(ObjectMapHydrator hydrator, Property property) Hydrate a single field of this mapping.voidhydrateField(Object obj, ObjectMapHydrator hydrator, Property property) Hydrate a single field of into the target object, based on this mapping. 
- 
Method Details
- 
_getValue
 - 
_getValue
 - 
_setValue
 - 
_setValue
 - 
hydrate
Hydrate all fields of this mapping.If a field is not present in the hydrator, an exception should be thrown.
Is equivalent to performing
hydrateField(ObjectMapHydrator, Property)for all fields in this mapping.- Parameters:
 hydrator- The hydrator to use
 - 
hydrate
Hydrate all fields of this mapping into the target object.If a field is not present in the hydrator, an exception should be thrown.
Is equivalent to performing
hydrateField(Object, ObjectMapHydrator, Property)for all fields in this mapping.- Parameters:
 obj- The object to hydratehydrator- The hydrator to use
 - 
hydrateField
Hydrate a single field of this mapping.If the field is annotated with
Serializedit should be used for this hydration.- Parameters:
 hydrator- The hydrator to useproperty- The property to hydrate
 - 
hydrateField
Hydrate a single field of into the target object, based on this mapping.If the field is annotated with
Serializedit should be used for this hydration.- Parameters:
 obj- The object to hydratehydrator- The hydrator to useproperty- The property to hydrate
 - 
columnize
 - 
columnize
 - 
_getKey
CompoundKey _getKey() - 
_getKey
 - 
_setRelation
 - 
_setRelationNotLoaded
 - 
_getRelation
 - 
_getRelation
 - 
_getRelation
 - 
_getRelation
 - 
_isChanged
boolean _isChanged() - 
_getDescriber
TypeDescriber _getDescriber() - 
copy
 
 -