BrightSide Workbench Full Report + Source Code
org.turro.elephant.impl.util.JSONConverter Class Reference

Public Member Functions

 JSONConverter ()
 
String toJSON (Object javaObject)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 29 of file JSONConverter.java.

Constructor & Destructor Documentation

◆ JSONConverter()

org.turro.elephant.impl.util.JSONConverter.JSONConverter ( )

Creates a new instance of JSONConverter

Definition at line 35 of file JSONConverter.java.

35  {
36  }

Member Function Documentation

◆ toJSON()

String org.turro.elephant.impl.util.JSONConverter.toJSON ( Object  javaObject)

Definition at line 38 of file JSONConverter.java.

38  {
39  result = new StringBuffer();
40  processObject(javaObject);
41  return result.toString();
42  }

The documentation for this class was generated from the following file: