Spring Data Document

org.springframework.data.document.mongodb.convert
Interface MongoConverter

All Superinterfaces:
MongoReader<Object>, MongoWriter<Object>
All Known Implementing Classes:
MappingMongoConverter, SimpleMongoConverter

public interface MongoConverter
extends MongoWriter<Object>, MongoReader<Object>


Method Summary
 ObjectId convertObjectId(Object id)
          Returns the ObjectId instance for the given id.
<T> T
convertObjectId(ObjectId id, Class<T> targetType)
          Converts the given ObjectId to the given target type.
 
Methods inherited from interface org.springframework.data.document.mongodb.MongoWriter
write
 
Methods inherited from interface org.springframework.data.document.mongodb.MongoReader
read
 

Method Detail

convertObjectId

<T> T convertObjectId(ObjectId id,
                      Class<T> targetType)
Converts the given ObjectId to the given target type.

Type Parameters:
T - the actual type to create
Parameters:
id - the source ObjectId
targetType - the target type to convert the ObjectId to
Returns:

convertObjectId

ObjectId convertObjectId(Object id)
Returns the ObjectId instance for the given id.

Parameters:
id -
Returns:

Spring Data Document

Copyright © 2011. All Rights Reserved.