public class ParseInstallation extends ParseObject
DEFAULT_PIN| Constructor and Description |
|---|
ParseInstallation() |
| Modifier and Type | Method and Description |
|---|---|
static ParseInstallation |
getCurrentInstallation() |
String |
getInstallationId()
Returns the unique ID of this installation.
|
static ParseQuery<ParseInstallation> |
getQuery()
/**
Constructs a query for
ParseInstallation. |
void |
put(String key,
Object value)
Add a key-value pair to this object.
|
void |
remove(String key)
Removes a key from this object's data if it exists.
|
add, addAll, addAllUnique, addUnique, containsKey, create, create, createWithoutData, createWithoutData, delete, deleteAll, deleteAllInBackground, deleteAllInBackground, deleteEventually, deleteEventually, deleteInBackground, deleteInBackground, fetch, fetchAll, fetchAllIfNeeded, fetchAllIfNeededInBackground, fetchAllIfNeededInBackground, fetchAllInBackground, fetchAllInBackground, fetchFromLocalDatastore, fetchFromLocalDatastoreInBackground, fetchIfNeeded, fetchIfNeededInBackground, fetchIfNeededInBackground, fetchInBackground, fetchInBackground, get, getACL, getBoolean, getBytes, getClassName, getCreatedAt, getDate, getDouble, getInt, getJSONArray, getJSONObject, getList, getLong, getMap, getNumber, getObjectId, getParseFile, getParseGeoPoint, getParseObject, getParseUser, getRelation, getString, getUpdatedAt, has, hasSameId, increment, increment, isDataAvailable, isDirty, isDirty, keySet, pin, pin, pinAll, pinAll, pinAllInBackground, pinAllInBackground, pinAllInBackground, pinAllInBackground, pinInBackground, pinInBackground, pinInBackground, pinInBackground, refresh, refreshInBackground, registerSubclass, removeAll, save, saveAll, saveAllInBackground, saveAllInBackground, saveEventually, saveEventually, saveInBackground, saveInBackground, setACL, setObjectId, unpin, unpin, unpinAll, unpinAll, unpinAll, unpinAll, unpinAllInBackground, unpinAllInBackground, unpinAllInBackground, unpinAllInBackground, unpinAllInBackground, unpinAllInBackground, unpinAllInBackground, unpinAllInBackground, unpinInBackground, unpinInBackground, unpinInBackground, unpinInBackgroundpublic static ParseInstallation getCurrentInstallation()
public static ParseQuery<ParseInstallation> getQuery()
ParseInstallation.ParseQuery.getQuery(Class)public String getInstallationId()
public void put(String key, Object value) throws IllegalArgumentException
ParseObjectcamelCaseLikeThis.put in class ParseObjectkey - Keys must be alphanumerical plus underscore, and start with a letter.value - Values may be numerical, String, JSONObject, JSONArray,
JSONObject.NULL, or other ParseObjects. value may not be null.IllegalArgumentExceptionpublic void remove(String key)
ParseObjectremove in class ParseObjectkey - The key to remove.