Example usage for org.json.simple JSONValue toJSONString

List of usage examples for org.json.simple JSONValue toJSONString

Introduction

In this page you can find the example usage for org.json.simple JSONValue toJSONString.

Prototype

public static String toJSONString(Object value) 

Source Link

Usage

From source file:yui.classes.YUILoader.java

/**
 * Used to fetch a JSON object with the required css components
 * @return Returns a JSON String containing urls for each JavaScript component
 *//*from  ww w . j  a  va 2s .  c o  m*/
public String css_json() {

    Map json = this.json(MODULE_TYPE.CSS, false, false, false);
    return JSONValue.toJSONString(json);
}