@@ -112,6 +112,7 @@ public DefaultTypeMapper(TypeAliasAccessor<S> accessor,
112
112
* @see org.springframework.data.convert.TypeMapper#readType(java.lang.Object)
113
113
*/
114
114
@ Nullable
115
+ @ Override
115
116
public TypeInformation <?> readType (S source ) {
116
117
117
118
Assert .notNull (source , "Source object must not be null!" );
@@ -142,6 +143,7 @@ private TypeInformation<?> getFromCacheOrCreate(Alias alias) {
142
143
* (non-Javadoc)
143
144
* @see org.springframework.data.convert.TypeMapper#readType(java.lang.Object, org.springframework.data.util.TypeInformation)
144
145
*/
146
+ @ Override
145
147
public <T > TypeInformation <? extends T > readType (S source , TypeInformation <T > basicType ) {
146
148
147
149
Assert .notNull (source , "Source must not be null!" );
@@ -198,6 +200,7 @@ protected TypeInformation<?> getFallbackTypeFor(S source) {
198
200
* (non-Javadoc)
199
201
* @see org.springframework.data.convert.TypeMapper#writeType(java.lang.Class, java.lang.Object)
200
202
*/
203
+ @ Override
201
204
public void writeType (Class <?> type , S dbObject ) {
202
205
writeType (ClassTypeInformation .from (type ), dbObject );
203
206
}
@@ -206,6 +209,7 @@ public void writeType(Class<?> type, S dbObject) {
206
209
* (non-Javadoc)
207
210
* @see org.springframework.data.convert.TypeMapper#writeType(org.springframework.data.util.TypeInformation, java.lang.Object)
208
211
*/
212
+ @ Override
209
213
public void writeType (TypeInformation <?> info , S sink ) {
210
214
211
215
Assert .notNull (info , "TypeInformation must not be null!" );
0 commit comments