Uses of Interface
org.eclipse.jetty.util.ajax.JSON.Convertor
-
Packages that use JSON.Convertor Package Description org.eclipse.jetty.util.ajax Jetty Util : Simple JSON Utility classes -
-
Uses of JSON.Convertor in org.eclipse.jetty.util.ajax
Classes in org.eclipse.jetty.util.ajax that implement JSON.Convertor Modifier and Type Class Description class
JSONCollectionConvertor
class
JSONDateConvertor
Convert aDate
to JSON.class
JSONEnumConvertor
Convert anEnum
to JSON.class
JSONObjectConvertor
Convert an Object to JSON using reflection on getters methods.class
JSONPojoConvertor
Converts POJOs to JSON and vice versa.class
JSONPojoConvertorFactory
Methods in org.eclipse.jetty.util.ajax that return JSON.Convertor Modifier and Type Method Description JSON.Convertor
AsyncJSON.Factory. getConvertor(java.lang.String className)
Returns theJSON.Convertor
associated with the given class name, if any.protected JSON.Convertor
JSON. getConvertor(java.lang.Class forClass)
Lookup a convertor for a class.JSON.Convertor
JSON. getConvertorFor(java.lang.String name)
Lookup a convertor for a named class.JSON.Convertor
AsyncJSON.Factory. removeConvertor(java.lang.String className)
Removes theJSON.Convertor
associated with the given class name.JSON.Convertor
JSON. removeConvertorFor(java.lang.String name)
Removes a registeredJSON.Convertor
for the given named class or interface.Methods in org.eclipse.jetty.util.ajax with parameters of type JSON.Convertor Modifier and Type Method Description void
JSON. addConvertor(java.lang.Class forClass, JSON.Convertor convertor)
Register aJSON.Convertor
for a class or interface.void
JSON. addConvertorFor(java.lang.String name, JSON.Convertor convertor)
Register aJSON.Convertor
for a named class or interface.void
JSON. appendJSON(java.lang.Appendable buffer, JSON.Convertor convertor, java.lang.Object object)
void
JSON. appendJSON(java.lang.StringBuffer buffer, JSON.Convertor convertor, java.lang.Object object)
Deprecated.void
AsyncJSON.Factory. putConvertor(java.lang.String className, JSON.Convertor convertor)
Associates the givenJSON.Convertor
to the given class name.static void
JSON. registerConvertor(java.lang.Class forClass, JSON.Convertor convertor)
Register aJSON.Convertor
for a class or interface.
-