Uses of Class
com.stackmob.sdk.model.StackMobModel

Packages that use StackMobModel
com.stackmob.sdk.callback The various callbacks used to respond to asynchronous calls. 
com.stackmob.sdk.model Base classes for objects that map to StackMob data. 
 

Uses of StackMobModel in com.stackmob.sdk.callback
 

Classes in com.stackmob.sdk.callback with type parameters of type StackMobModel
 class StackMobQueryCallback<T extends StackMobModel>
          A callback used by query(Class, com.stackmob.sdk.api.StackMobQuery, StackMobQueryCallback).
 

Uses of StackMobModel in com.stackmob.sdk.model
 

Subclasses of StackMobModel in com.stackmob.sdk.model
 class StackMobUser
          A specialized subclass of StackMobModel to represent users of your app.
 

Methods in com.stackmob.sdk.model with type parameters of type StackMobModel
<T extends StackMobModel>
void
StackMobModel.append(String field, List<T> objs, StackMobCallback callback)
          append model objects to a collection field in this object.
<T extends StackMobModel>
void
StackMobModel.appendAndSave(String field, List<T> objs, StackMobCallback callback)
          append model objects to a collection field in this object.
static
<T extends StackMobModel>
void
StackMobModel.count(Class<T> theClass, StackMobQuery q, StackMobCountCallback callback)
          run a count query on the server to count all the instances of your model within certain constraints
static
<T extends StackMobModel>
void
StackMobModel.count(StackMob stackmob, Class<T> theClass, StackMobQuery q, StackMobCountCallback callback)
          run a count query on the server to count all the instances of your model within certain constraints
static
<T extends StackMobModel>
T
StackMobModel.newFromJson(Class<T> classOfT, String json)
          create a new instance of the specified model class from a json string.
static
<T extends StackMobModel>
void
StackMobModel.query(Class<T> theClass, StackMobQuery q, StackMobOptions options, StackMobQueryCallback<T> callback)
          run a query on the server to get all the instances of your model within certain constraints
static
<T extends StackMobModel>
void
StackMobModel.query(Class<T> theClass, StackMobQuery q, StackMobQueryCallback<T> callback)
          run a query on the server to get all the instances of your model within certain constraints
static
<T extends StackMobModel>
void
StackMobModel.query(StackMob stackmob, Class<T> theClass, StackMobQuery q, StackMobOptions options, StackMobQueryCallback<T> callback)
          run a query on the server to get all the instances of your model within certain constraints
static
<T extends StackMobModel>
void
StackMobModel.query(StackMob stackmob, Class<T> theClass, StackMobQuery q, StackMobQueryCallback<T> callback)
          run a query on the server to get all the instances of your model within certain constraints
<T extends StackMobModel>
void
StackMobModel.remove(String field, List<T> objs, StackMobCallback callback)
          remove values from a collection on the client and server.
<T extends StackMobModel>
void
StackMobModel.removeAndDelete(String field, List<T> objs, StackMobCallback callback)
          remove objects from a collection and delete them on the client and server.
static
<T extends StackMobModel>
void
StackMobModel.saveMultiple(List<T> models, StackMobCallback callback)
          save multiple objects in one batch.
static
<T extends StackMobModel>
void
StackMobModel.saveMultiple(StackMob stackmob, List<T> models, StackMobCallback callback)
          save multiple objects in one batch.
 

Method parameters in com.stackmob.sdk.model with type arguments of type StackMobModel
protected  void StackMobModel.init(Class<? extends StackMobModel> actualClass)
           
 

Constructor parameters in com.stackmob.sdk.model with type arguments of type StackMobModel
StackMobModel(Class<? extends StackMobModel> actualClass)
          create a new model of the specified class.
StackMobModel(String id, Class<? extends StackMobModel> actualClass)
          create a new model of the specified class with an id overriding the default, automatically generated one.
 



Copyright © 2013 StackMob. All Rights Reserved.