Uses of Class
com.stackmob.sdkapi.SMValue

Packages that use SMValue
com.stackmob.sdkapi   
 

Uses of SMValue in com.stackmob.sdkapi
 

Classes in com.stackmob.sdkapi with type parameters of type SMValue
 class SMList<T extends SMValue>
          A List of values
 

Subclasses of SMValue in com.stackmob.sdkapi
 class SMBoolean
          A Boolean value
 class SMCollection<T>
           
 class SMDouble
          A Double value
 class SMInt
          An Integer (Long) value
 class SMList<T extends SMValue>
          A List of values
 class SMLong
          Deprecated. use SMInt instead
 class SMObject
          An SMValue representing an object stored, or to be stored, in the StackMob Datastore
 class SMPrimitive<T>
           
 class SMString
          A String value
 

Methods in com.stackmob.sdkapi with type parameters of type SMValue
<U extends SMValue>
U
SMValue.asA(Class<U> cls)
           
<U extends SMValue>
boolean
SMValue.isA(Class<U> cls)
           
 

Methods in com.stackmob.sdkapi that return SMValue
 SMValue SMSet.getValue()
          Gets the new value for the specified field
 SMValue SMNotEqual.getValue()
           
 SMValue SMLessOrEqual.getValue()
           
 SMValue SMLess.getValue()
           
 SMValue SMGreaterOrEqual.getValue()
           
 SMValue SMGreater.getValue()
           
 SMValue SMEquals.getValue()
           
 

Methods in com.stackmob.sdkapi that return types with arguments of type SMValue
 List<SMValue> BulkResult.getFailedIds()
           
 List<SMValue> BulkResult.getSuccessIds()
           
 List<? extends SMValue> SMIn.getValues()
           
 

Methods in com.stackmob.sdkapi with parameters of type SMValue
 SMObject DataService.addRelatedObjects(String schema, SMValue objectId, String relation, List<? extends SMValue> relatedIds)
          Adds the specified IDs to the specified relationship
 SMObject DataService.addRelatedObjects(String schema, SMValue objectId, String relation, SMList relatedIds)
          Adds the specified IDs to the specified relationship
 BulkResult DataService.createRelatedObjects(String schema, SMValue objectId, String relatedField, List<SMObject> relatedObjectsToCreate)
          Creates a number of new objects in the datastore.
 Boolean DataService.deleteObject(String schema, SMValue id)
          Deletes an object in the datastore.
 void DataService.removeRelatedObjects(String schema, SMValue objectId, String relation, List<? extends SMValue> relatedIds, boolean cascadeDelete)
          Removes any number of related objects from a relationship.
 void DataService.removeRelatedObjects(String schema, SMValue objectId, String relation, SMList relatedIds, boolean cascadeDelete)
          Removes any number of related objects from a relationship.
 SMObject DataService.updateObject(String schema, SMValue id, List<SMCondition> conditions, List<SMUpdate> updateActions)
          Updates an object in the datastore, if and only if it meets additional conditions.
 SMObject DataService.updateObject(String schema, SMValue id, List<SMUpdate> updateActions)
          Updates an object in the datastore.
 

Method parameters in com.stackmob.sdkapi with type arguments of type SMValue
 SMObject DataService.addRelatedObjects(String schema, SMValue objectId, String relation, List<? extends SMValue> relatedIds)
          Adds the specified IDs to the specified relationship
 void DataService.removeRelatedObjects(String schema, SMValue objectId, String relation, List<? extends SMValue> relatedIds, boolean cascadeDelete)
          Removes any number of related objects from a relationship.
 

Constructors in com.stackmob.sdkapi with parameters of type SMValue
SMEquals(String field, SMValue value)
           
SMGreater(String field, SMValue value)
           
SMGreaterOrEqual(String field, SMValue value)
           
SMLess(String field, SMValue value)
           
SMLessOrEqual(String field, SMValue value)
           
SMList(T... values)
          Create a new SMList
SMNotEqual(String field, SMValue value)
           
SMSet(String field, SMValue value)
          Creates a new set operation
 

Constructor parameters in com.stackmob.sdkapi with type arguments of type SMValue
BulkResult(List<SMValue> successIds, List<SMValue> failedIds)
           
BulkResult(List<SMValue> successIds, List<SMValue> failedIds)
           
SMIn(String field, List<? extends SMValue> values)
          Creates a new SMIn query
SMObject(Map<String,SMValue> value)
          Create a new SMObject
 



Copyright © 2012 StackMob. All Rights Reserved.