Uses of Class
com.netmera.mobile.NetmeraContent

Packages that use NetmeraContent
com.netmera.mobile   
 

Uses of NetmeraContent in com.netmera.mobile
 

Methods in com.netmera.mobile that return NetmeraContent
 NetmeraContent NetmeraService.get()
          Gets the single NetmeraContent object with the given path.Path of the content can be setted using the setPath() method.
 

Methods in com.netmera.mobile that return types with arguments of type NetmeraContent
 java.util.List<NetmeraContent> NetmeraService.boxSearch(NetmeraGeoLocation firstPoint, NetmeraGeoLocation secondPoint, java.lang.String locationSearchField)
          Creates box using the given two location (latitude,longitude) data and searches inside that box.
 java.util.List<NetmeraContent> NetmeraService.circleSearch(NetmeraGeoLocation startLocation, double distance, java.lang.String locationSearchField)
          Searches the content by taking given location as a base and retrieves the contents that located given distance far away.
 java.util.List<NetmeraContent> NetmeraService.getContents(java.util.List<java.lang.String> pathList)
          Gets the list of NetmeraContent objects with the given path list.If there is no matched content for the given path list, it returns empty list.
 java.util.List<NetmeraContent> NetmeraService.search()
          Retrieves the list of NetmeraContent objects that matches with the query.
 

Method parameters in com.netmera.mobile with type arguments of type NetmeraContent
 void NetmeraService.boxSearchInBackground(NetmeraGeoLocation firstPoint, NetmeraGeoLocation secondPoint, java.lang.String locationSearchField, NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Creates box using the given two location (latitude,longitude) data and searches inside that box in the background thread.Since it runs on the background thread it does not block program.It is recommended over boxSearch() method.
 void NetmeraService.circleSearchInBackground(NetmeraGeoLocation startLocation, double distance, java.lang.String locationSearchField, NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Searches the content by taking given location as a base and retrieves the contents that located given distance far away in the background thread.Since it runs on the background thread it does not block program.It is recommended over circleSearch() method.
 void NetmeraContent.createInBackground(NetmeraCallback<NetmeraContent> callback)
          Adds data to the cloud in the background thread.
 void NetmeraService.getContentsInBackground(java.util.List<java.lang.String> pathList, NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Gets the list of NetmeraContent objects with the given path list in the background thread.If there is no matched content for the given path list, it returns empty list.Since it runs on the background thread it does not block program.It is recommended over getContents() method.
 void NetmeraService.getInBackground(NetmeraCallback<NetmeraContent> callback)
          Gets the single NetmeraContent object that matches the query in the background thread.Since it runs on the background thread it does not block program.It is recommended over get() method.
 void NetmeraService.searchInBackground(NetmeraCallback<java.util.List<NetmeraContent>> callback)
          Retrieves the list of NetmeraContent objects that matches with the query in the background thread.Since it runs on the background thread it does not block program.It is recommended over search() method.
 void NetmeraContent.updateInBackground(NetmeraCallback<NetmeraContent> callback)
          Updates data in the background thread.