Back to project page RZAndroidBaseUtils.
The source code is released under:
MIT License
If you think the Android project RZAndroidBaseUtils 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.raizlabs.json; /* w w w. ja v a2 s . co m*/ import org.json.JSONObject; /** * Delegate interface which parses an object from JSON during an array iteration. * * @author Dylan James * * @param <T> The type of object which will be parsed from the JSON */ public interface JSONArrayParserDelegate<T> { /** * Called to parse an object from the given JSON * @param json The {@link JSONObject} to parse * @return The object, or null if the data could not be parsed */ public T parseObject(JSONObject json); }