Back to project page DataSync.
The source code is released under:
Apache License
If you think the Android project DataSync listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cardiomood.android.sync.parse; // w ww .j a va 2 s . c o m /** * Created by antondanhsin on 18/10/14. */ public interface ParseValueConverter { public static final ParseValueConverter DEFAULT_VALUE_CONVERTER = new SimpleParseValueConverter(); <T> T convertValue(Object value, Class<T> targetClass); }