Contains placeholder values to use when writing data to the Firebase Database.
| public static final Map<String, String> | TIMESTAMP | A placeholder value for auto-populating the current timestamp (time since the Unix epoch, in milliseconds) by the Firebase Database servers. |
| final static Object |
increment(double delta)
Returns a placeholder value that can be used to atomically increment the current database value
by the provided delta.
|
| final static Object |
increment(long delta)
Returns a placeholder value that can be used to atomically increment the current database value
by the provided delta.
|
A placeholder value for auto-populating the current timestamp (time since the Unix epoch, in milliseconds) by the Firebase Database servers.
Returns a placeholder value that can be used to atomically increment the current database value by the provided delta.
The delta must be an long or a double value. If the current value is not an integer or double, or if the data does not yet exist, the transformation will set the data to the delta value. If either of the delta value or the existing data are doubles, both values will be interpreted as doubles. Double arithmetic and representation of double values follow IEEE 754 semantics. If there is positive/negative integer overflow, the sum is calculated as a a double.
| delta | the amount to modify the current value atomically. |
|---|
Returns a placeholder value that can be used to atomically increment the current database value by the provided delta.
The delta must be an long or a double value. If the current value is not a number, or if the database value does not yet exist, the transformation will set the database value to the delta value. If either the delta value or the existing value are doubles, both values will be interpreted as doubles. Double arithmetic and representation of double values follow IEEE 754 semantics. If there is positive/negative integer overflow, the sum is calculated as a double.
| delta | the amount to modify the current value atomically. |
|---|