Skip to content

Instantly share code, notes, and snippets.

View evanrich's full-sized avatar

Evan Richardson evanrich

  • Block
  • Hayward, CA
  • 20:44 (UTC -07:00)
View GitHub Profile
@jamiechapman
jamiechapman / ParseProxyObject.java
Last active March 14, 2019 07:37
A Parse.com Serializable ParseObject Proxy
// By Jamie Chapman, @chappers57
// License: open, do as you wish, just don't blame me if stuff breaks ;-)
public class ParseProxyObject implements Serializable {
private static final long serialVersionUID = 1L;
private HashMap<String, Object> values = new HashMap<String, Object>();
public HashMap<String, Object> getValues() {
return values;