R
- The type of object created by the visitorpublic interface ColumnMappingVisitor<R>
Rather than implement this interface directly, we recommend implementing one of the derived classes. The derived classes encapsulate the rules about which mappings are applicable to the different types of statements.
Modifier and Type | Method and Description |
---|---|
R |
visit(ColumnToColumnMapping columnMapping) |
R |
visit(ConstantMapping mapping) |
R |
visit(NullMapping mapping) |
R |
visit(PropertyMapping mapping) |
R |
visit(PropertyWhenPresentMapping mapping) |
R |
visit(SelectMapping mapping) |
R |
visit(StringConstantMapping mapping) |
<T> R |
visit(ValueMapping<T> mapping) |
<T> R |
visit(ValueOrNullMapping<T> mapping) |
<T> R |
visit(ValueWhenPresentMapping<T> mapping) |
R visit(NullMapping mapping)
R visit(ConstantMapping mapping)
R visit(StringConstantMapping mapping)
<T> R visit(ValueMapping<T> mapping)
<T> R visit(ValueOrNullMapping<T> mapping)
<T> R visit(ValueWhenPresentMapping<T> mapping)
R visit(SelectMapping mapping)
R visit(PropertyMapping mapping)
R visit(PropertyWhenPresentMapping mapping)
R visit(ColumnToColumnMapping columnMapping)
Copyright © 2016–2021 MyBatis.org. All rights reserved.