Uses of Interface
org.hibernate.type.format.FormatMapper
-
Packages that use FormatMapper Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.type.descriptor.java.spi org.hibernate.type.format Support for type mappings which format composite values to a structured text format (JSON or XML) for storage in a database-specific column type supporting that structured format.org.hibernate.type.format.jackson Implementations ofFormatMapper
using Jackson.org.hibernate.type.format.jakartajson An implementation ofFormatMapper
using Jakarta JSON.org.hibernate.type.format.jaxb An implementation ofFormatMapper
using JAXB. -
-
Uses of FormatMapper in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type FormatMapper Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyJsonFormatMapper(FormatMapper jsonFormatMapper)
Specifies aformat mapper
to use for serialization/deserialization of JSON properties.SessionFactoryBuilder
SessionFactoryBuilder. applyXmlFormatMapper(FormatMapper xmlFormatMapper)
Specifies aformat mapper
to use for serialization/deserialization of XML properties. -
Uses of FormatMapper in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return FormatMapper Modifier and Type Method Description FormatMapper
SessionFactoryOptionsBuilder. getJsonFormatMapper()
FormatMapper
SessionFactoryOptionsBuilder. getXmlFormatMapper()
Methods in org.hibernate.boot.internal with parameters of type FormatMapper Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilderImpl. applyJsonFormatMapper(FormatMapper jsonFormatMapper)
void
SessionFactoryOptionsBuilder. applyJsonFormatMapper(FormatMapper jsonFormatMapper)
SessionFactoryBuilder
SessionFactoryBuilderImpl. applyXmlFormatMapper(FormatMapper xmlFormatMapper)
void
SessionFactoryOptionsBuilder. applyXmlFormatMapper(FormatMapper xmlFormatMapper)
-
Uses of FormatMapper in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return FormatMapper Modifier and Type Method Description FormatMapper
AbstractDelegatingSessionFactoryOptions. getJsonFormatMapper()
FormatMapper
SessionFactoryOptions. getJsonFormatMapper()
The format mapper to use for serializing/deserializing JSON data.FormatMapper
AbstractDelegatingSessionFactoryOptions. getXmlFormatMapper()
FormatMapper
SessionFactoryOptions. getXmlFormatMapper()
The format mapper to use for serializing/deserializing XML data.Methods in org.hibernate.boot.spi with parameters of type FormatMapper Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyJsonFormatMapper(FormatMapper jsonFormatMapper)
T
AbstractDelegatingSessionFactoryBuilder. applyXmlFormatMapper(FormatMapper xmlFormatMapper)
-
Uses of FormatMapper in org.hibernate.internal
Methods in org.hibernate.internal that return FormatMapper Modifier and Type Method Description FormatMapper
FastSessionServices. getJsonFormatMapper()
FormatMapper
FastSessionServices. getXmlFormatMapper()
-
Uses of FormatMapper in org.hibernate.type.descriptor.java.spi
Methods in org.hibernate.type.descriptor.java.spi that return FormatMapper Modifier and Type Method Description protected abstract FormatMapper
FormatMapperBasedJavaType. getFormatMapper(TypeConfiguration typeConfiguration)
protected FormatMapper
JsonJavaType. getFormatMapper(TypeConfiguration typeConfiguration)
protected FormatMapper
XmlJavaType. getFormatMapper(TypeConfiguration typeConfiguration)
-
Uses of FormatMapper in org.hibernate.type.format
Classes in org.hibernate.type.format that implement FormatMapper Modifier and Type Class Description class
AbstractJsonFormatMapper
-
Uses of FormatMapper in org.hibernate.type.format.jackson
Classes in org.hibernate.type.format.jackson that implement FormatMapper Modifier and Type Class Description class
JacksonJsonFormatMapper
class
JacksonXmlFormatMapper
Methods in org.hibernate.type.format.jackson that return FormatMapper Modifier and Type Method Description static FormatMapper
JacksonIntegration. getJsonJacksonFormatMapperOrNull()
static FormatMapper
JacksonIntegration. getXMLJacksonFormatMapperOrNull()
-
Uses of FormatMapper in org.hibernate.type.format.jakartajson
Classes in org.hibernate.type.format.jakartajson that implement FormatMapper Modifier and Type Class Description class
JsonBJsonFormatMapper
Methods in org.hibernate.type.format.jakartajson that return FormatMapper Modifier and Type Method Description static FormatMapper
JakartaJsonIntegration. getJakartaJsonBFormatMapperOrNull()
-
Uses of FormatMapper in org.hibernate.type.format.jaxb
Classes in org.hibernate.type.format.jaxb that implement FormatMapper Modifier and Type Class Description class
JaxbXmlFormatMapper
-