Uses of Class
com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator.Feature
-
Packages that use ToXmlGenerator.Feature Package Description com.fasterxml.jackson.dataformat.xml Package that contains XML-based backends which can serialize POJOs to and deserialize from XML, using Stax XML parsers and generators for XML processing and mostly standard Jackson data binding otherwise.com.fasterxml.jackson.dataformat.xml.ser -
-
Uses of ToXmlGenerator.Feature in com.fasterxml.jackson.dataformat.xml
Methods in com.fasterxml.jackson.dataformat.xml that return types with arguments of type ToXmlGenerator.Feature Modifier and Type Method Description java.lang.Class<ToXmlGenerator.Feature>
XmlFactory. getFormatWriteFeatureType()
Methods in com.fasterxml.jackson.dataformat.xml with parameters of type ToXmlGenerator.Feature Modifier and Type Method Description XmlFactory
XmlFactory. configure(ToXmlGenerator.Feature f, boolean state)
Method for enabling or disabling specified XML generator feature.XmlFactoryBuilder
XmlFactoryBuilder. configure(ToXmlGenerator.Feature f, boolean state)
XmlMapper.Builder
XmlMapper.Builder. configure(ToXmlGenerator.Feature feature, boolean state)
com.fasterxml.jackson.databind.ObjectMapper
XmlMapper. configure(ToXmlGenerator.Feature f, boolean state)
XmlFactory
XmlFactory. disable(ToXmlGenerator.Feature f)
Method for disabling specified XML generator feature.XmlFactoryBuilder
XmlFactoryBuilder. disable(ToXmlGenerator.Feature f)
XmlFactoryBuilder
XmlFactoryBuilder. disable(ToXmlGenerator.Feature first, ToXmlGenerator.Feature... other)
XmlMapper.Builder
XmlMapper.Builder. disable(ToXmlGenerator.Feature... features)
com.fasterxml.jackson.databind.ObjectMapper
XmlMapper. disable(ToXmlGenerator.Feature f)
XmlFactory
XmlFactory. enable(ToXmlGenerator.Feature f)
Method for enabling specified XML generator feature.XmlFactoryBuilder
XmlFactoryBuilder. enable(ToXmlGenerator.Feature f)
XmlFactoryBuilder
XmlFactoryBuilder. enable(ToXmlGenerator.Feature first, ToXmlGenerator.Feature... other)
XmlMapper.Builder
XmlMapper.Builder. enable(ToXmlGenerator.Feature... features)
com.fasterxml.jackson.databind.ObjectMapper
XmlMapper. enable(ToXmlGenerator.Feature f)
boolean
XmlFactory. isEnabled(ToXmlGenerator.Feature f)
Check whether specified XML generator feature is enabled. -
Uses of ToXmlGenerator.Feature in com.fasterxml.jackson.dataformat.xml.ser
Methods in com.fasterxml.jackson.dataformat.xml.ser that return ToXmlGenerator.Feature Modifier and Type Method Description static ToXmlGenerator.Feature
ToXmlGenerator.Feature. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ToXmlGenerator.Feature[]
ToXmlGenerator.Feature. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.dataformat.xml.ser with parameters of type ToXmlGenerator.Feature Modifier and Type Method Description ToXmlGenerator
ToXmlGenerator. configure(ToXmlGenerator.Feature f, boolean state)
ToXmlGenerator
ToXmlGenerator. disable(ToXmlGenerator.Feature f)
ToXmlGenerator
ToXmlGenerator. enable(ToXmlGenerator.Feature f)
boolean
ToXmlGenerator. isEnabled(ToXmlGenerator.Feature f)
-