|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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 | ||
|---|---|---|
|
StackMobModel.append(String field,
List<T> objs,
StackMobCallback callback)
append model objects to a collection field in this object. |
|
|
StackMobModel.appendAndSave(String field,
List<T> objs,
StackMobCallback callback)
append model objects to a collection field in this object. |
|
static
|
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
|
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
|
StackMobModel.delete(Class<T> theClass,
StackMobQuery q,
StackMobCountCallback callback)
run a delete request with query parameters on the server. |
|
static
|
StackMobModel.delete(StackMob stackmob,
Class<T> theClass,
StackMobQuery q,
StackMobCallback callback)
run a delete request with query parameters on the server. |
|
static
|
StackMobModel.newFromJson(StackMob stackmob,
Class<T> classOfT,
String json)
create a new instance of the specified model class from a json string. |
|
static
|
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
|
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
|
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
|
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 |
|
|
StackMobModel.remove(String field,
List<T> objs,
StackMobCallback callback)
remove values from a collection on the client and server. |
|
|
StackMobModel.removeAndDelete(String field,
List<T> objs,
StackMobCallback callback)
remove objects from a collection and delete them on the client and server. |
|
static
|
StackMobModel.saveMultiple(List<T> models,
StackMobCallback callback)
save multiple objects in one batch. |
|
static
|
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. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||