Package com.bazaarvoice.commons.data.model.json

Examples of com.bazaarvoice.commons.data.model.json.StringJSONObjectMap


    protected static Map<String, Object> convertJSONObjectToMap(@Nullable final JSONObject jsonObject) {
        return new GenericJSONObjectMap(jsonObject);
    }

    protected static Map<String, String> convertJSONObjectToStringMap(@Nullable final JSONObject jsonObject) {
        return new StringJSONObjectMap(jsonObject);
    }
View Full Code Here

TOP

Related Classes of com.bazaarvoice.commons.data.model.json.StringJSONObjectMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.