Uses of Class
com.fasterxml.jackson.dataformat.xml.deser.FromXmlParser.Feature
-
Packages that use FromXmlParser.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.deser -
-
Uses of FromXmlParser.Feature in com.fasterxml.jackson.dataformat.xml
Methods in com.fasterxml.jackson.dataformat.xml that return types with arguments of type FromXmlParser.Feature Modifier and Type Method Description java.lang.Class<FromXmlParser.Feature>
XmlFactory. getFormatReadFeatureType()
Methods in com.fasterxml.jackson.dataformat.xml with parameters of type FromXmlParser.Feature Modifier and Type Method Description XmlFactory
XmlFactory. configure(FromXmlParser.Feature f, boolean state)
Method for enabling or disabling specified XML parser feature.XmlFactoryBuilder
XmlFactoryBuilder. configure(FromXmlParser.Feature f, boolean state)
XmlMapper.Builder
XmlMapper.Builder. configure(FromXmlParser.Feature feature, boolean state)
com.fasterxml.jackson.databind.ObjectMapper
XmlMapper. configure(FromXmlParser.Feature f, boolean state)
XmlFactory
XmlFactory. disable(FromXmlParser.Feature f)
Method for disabling specified XML parser feature.XmlFactoryBuilder
XmlFactoryBuilder. disable(FromXmlParser.Feature f)
XmlFactoryBuilder
XmlFactoryBuilder. disable(FromXmlParser.Feature first, FromXmlParser.Feature... other)
XmlMapper.Builder
XmlMapper.Builder. disable(FromXmlParser.Feature... features)
com.fasterxml.jackson.databind.ObjectMapper
XmlMapper. disable(FromXmlParser.Feature f)
XmlFactory
XmlFactory. enable(FromXmlParser.Feature f)
Method for enabling specified XML parser feature.XmlFactoryBuilder
XmlFactoryBuilder. enable(FromXmlParser.Feature f)
XmlFactoryBuilder
XmlFactoryBuilder. enable(FromXmlParser.Feature first, FromXmlParser.Feature... other)
XmlMapper.Builder
XmlMapper.Builder. enable(FromXmlParser.Feature... features)
com.fasterxml.jackson.databind.ObjectMapper
XmlMapper. enable(FromXmlParser.Feature f)
boolean
XmlFactory. isEnabled(FromXmlParser.Feature f)
Checked whether specified XML parser feature is enabled. -
Uses of FromXmlParser.Feature in com.fasterxml.jackson.dataformat.xml.deser
Methods in com.fasterxml.jackson.dataformat.xml.deser that return FromXmlParser.Feature Modifier and Type Method Description static FromXmlParser.Feature
FromXmlParser.Feature. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FromXmlParser.Feature[]
FromXmlParser.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.deser with parameters of type FromXmlParser.Feature Modifier and Type Method Description FromXmlParser
FromXmlParser. configure(FromXmlParser.Feature f, boolean state)
FromXmlParser
FromXmlParser. disable(FromXmlParser.Feature f)
FromXmlParser
FromXmlParser. enable(FromXmlParser.Feature f)
boolean
FromXmlParser. isEnabled(FromXmlParser.Feature f)
-