Uses of Class
org.apache.camel.model.dataformat.JsonLibrary
-
Packages that use JsonLibrary Package Description org.apache.camel.builder org.apache.camel.model.dataformat The JAXB POJOs for the Data Formats used to marshal and unmarshal objects to and from streams inside components -
-
Uses of JsonLibrary in org.apache.camel.builder
Methods in org.apache.camel.builder with parameters of type JsonLibrary Modifier and Type Method Description T
DataFormatClause. json(JsonLibrary library)
Uses the JSON data formatT
DataFormatClause. json(JsonLibrary library, boolean prettyPrint)
Uses the JSON data formatT
DataFormatClause. json(JsonLibrary type, Class<?> unmarshalType)
Uses the JSON data formatT
DataFormatClause. json(JsonLibrary type, Class<?> unmarshalType, boolean prettyPrint)
Uses the JSON data format -
Uses of JsonLibrary in org.apache.camel.model.dataformat
Methods in org.apache.camel.model.dataformat that return JsonLibrary Modifier and Type Method Description JsonLibrary
JsonDataFormat. getLibrary()
static JsonLibrary
JsonLibrary. valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonLibrary[]
JsonLibrary. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.camel.model.dataformat with parameters of type JsonLibrary Modifier and Type Method Description JsonDataFormat
JsonDataFormat. library(JsonLibrary library)
void
JsonDataFormat. setLibrary(JsonLibrary library)
Which json library to use.Constructors in org.apache.camel.model.dataformat with parameters of type JsonLibrary Constructor Description JsonDataFormat(JsonLibrary library)
-