Advertisement
yo2man

EVEN more notes on Java

Aug 3rd, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. //Even more notes on Java
  2. //----------------------------------------------
  3.  
  4. //Key-value pair:
  5. ParseObject testObject = new ParseObject("TestObject");
  6. testObject.put("foo", "bar") //<--- ("key", "value")  //<- in Parse "foo" is stored as a String in the data table.[1]
  7. testObject.saveInBackground();
  8.  
  9.  
  10. //[1]Other data and their what datatype they are stored in: ex: username is stored as a String, Password is stored as a String, email is Stored as a String. emailVerified is stored as a Boolean. createdAt is stored as a date, authData is stored as an authData //simple and self-explanatory.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement