Spring Data Graph

Uses of Interface
org.springframework.data.document.mongodb.MongoWriter

Packages that use MongoWriter
org.springframework.data.document.mongodb MongoDB core support. 
 

Uses of MongoWriter in org.springframework.data.document.mongodb
 

Subinterfaces of MongoWriter in org.springframework.data.document.mongodb
 interface MongoConverter
           
 interface MongoReaderWriter<T>
           
 

Classes in org.springframework.data.document.mongodb that implement MongoWriter
 class SimpleMongoConverter
          Basic MongoConverter implementation to convert between domain classes and DBObjects.
 

Methods in org.springframework.data.document.mongodb with parameters of type MongoWriter
<T> void
MongoTemplate.insert(String collectionName, T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insert(String collectionName, T objectToSave, MongoWriter<T> writer)
          Insert the object into the specified collection.
<T> void
MongoTemplate.insert(T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insert(T objectToSave, MongoWriter<T> writer)
          Insert the object into the default collection.
<T> void
MongoTemplate.insertList(List<? extends T> listToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insertList(List<? extends T> listToSave, MongoWriter<T> writer)
          Insert a list of objects into the default collection using the provided MongoWriter instance
<T> void
MongoTemplate.insertList(String collectionName, List<? extends T> listToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insertList(String collectionName, List<? extends T> listToSave, MongoWriter<T> writer)
          Insert a list of objects into the specified collection using the provided MongoWriter instance
<T> void
MongoTemplate.save(String collectionName, T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.save(String collectionName, T objectToSave, MongoWriter<T> writer)
          Save the object into the specified collection using the provided writer.
<T> void
MongoTemplate.save(T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.save(T objectToSave, MongoWriter<T> writer)
          Save the object into the default collection using the provided writer.
 


Spring Data Graph

Copyright © 2011. All Rights Reserved.