| Package | Description |
|---|---|
| com.github.dozermapper.core.classmap |
Mapping definition used internally for classes
|
| com.github.dozermapper.core.fieldmap |
Mapping definition used internally for fields
|
| com.github.dozermapper.core.loader |
Mapping definition loader
|
| com.github.dozermapper.core.loader.api |
Mapping via API
|
| com.github.dozermapper.core.metadata |
Metadata to query the mapping definition
|
| Modifier and Type | Field and Description |
|---|---|
static MappingDirection |
MappingDirection.BI_DIRECTIONAL
Default mapping approach when a to b to a' then a == a'
|
static MappingDirection |
MappingDirection.ONE_WAY
Unidirectional mapping when a to b to a' then a != a'
|
| Modifier and Type | Method and Description |
|---|---|
MappingDirection |
ClassMap.getType() |
static MappingDirection |
MappingDirection.valueOf(String mappingDirection) |
| Modifier and Type | Method and Description |
|---|---|
void |
ClassMap.setType(MappingDirection type) |
| Modifier and Type | Method and Description |
|---|---|
MappingDirection |
FieldMap.getType() |
| Modifier and Type | Method and Description |
|---|---|
void |
FieldMap.setType(MappingDirection type) |
| Modifier and Type | Method and Description |
|---|---|
DozerBuilder.MappingBuilder |
DozerBuilder.MappingBuilder.type(MappingDirection type) |
void |
DozerBuilder.FieldExclusionBuilder.type(MappingDirection type) |
void |
DozerBuilder.FieldMappingBuilder.type(MappingDirection type) |
| Modifier and Type | Method and Description |
|---|---|
TypeMappingBuilder |
TypeMappingBuilder.exclude(FieldDefinition field,
MappingDirection direction) |
TypeMappingBuilder |
TypeMappingBuilder.exclude(String field,
MappingDirection direction) |
| Modifier and Type | Method and Description |
|---|---|
MappingDirection |
FieldMappingMetadata.getMappingDirection()
Can be used to check whether a mapping in unidirectional or bidirectional.
|
MappingDirection |
DozerClassMappingMetadata.getMappingDirection() |
MappingDirection |
DozerFieldMappingMetadata.getMappingDirection() |
MappingDirection |
ClassMappingMetadata.getMappingDirection()
Used to check if a mapping is bi- or unidirectional.
|
Copyright © 2005–2021 dozer. All rights reserved.