Class XmlAnnotationIntrospector.JaxbWrapper

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector _intr  
    • Constructor Summary

      Constructors 
      Constructor Description
      JaxbWrapper​(com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector i)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String findNamespace​(com.fasterxml.jackson.databind.introspect.Annotated ann)
      Method that can be called to figure out generic namespace property for an annotated object.
      java.lang.Boolean isOutputAsAttribute​(com.fasterxml.jackson.databind.introspect.Annotated ann)
      Method used to check whether given annotated element (field, method, constructor parameter) has indicator that suggests it be output as an XML attribute or not (as element)
      java.lang.Boolean isOutputAsCData​(com.fasterxml.jackson.databind.introspect.Annotated ann)
      Method used to check whether given annotated element (field, method, constructor parameter) has indicator that suggests it should be wrapped in a CDATA tag.
      java.lang.Boolean isOutputAsText​(com.fasterxml.jackson.databind.introspect.Annotated ann)
      Method used to check whether given annotated element (field, method, constructor parameter) has indicator that suggests it should be serialized as text, without element wrapper.
      void setDefaultUseWrapper​(boolean b)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • _intr

        protected final com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector _intr
    • Constructor Detail

      • JaxbWrapper

        public JaxbWrapper​(com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector i)
    • Method Detail

      • findNamespace

        public java.lang.String findNamespace​(com.fasterxml.jackson.databind.introspect.Annotated ann)
        Description copied from interface: XmlAnnotationIntrospector
        Method that can be called to figure out generic namespace property for an annotated object.
        Specified by:
        findNamespace in interface XmlAnnotationIntrospector
        Returns:
        Null if annotated thing does not define any namespace information; non-null namespace (which may be empty String) otherwise
      • isOutputAsAttribute

        public java.lang.Boolean isOutputAsAttribute​(com.fasterxml.jackson.databind.introspect.Annotated ann)
        Description copied from interface: XmlAnnotationIntrospector
        Method used to check whether given annotated element (field, method, constructor parameter) has indicator that suggests it be output as an XML attribute or not (as element)
        Specified by:
        isOutputAsAttribute in interface XmlAnnotationIntrospector
      • isOutputAsText

        public java.lang.Boolean isOutputAsText​(com.fasterxml.jackson.databind.introspect.Annotated ann)
        Description copied from interface: XmlAnnotationIntrospector
        Method used to check whether given annotated element (field, method, constructor parameter) has indicator that suggests it should be serialized as text, without element wrapper.
        Specified by:
        isOutputAsText in interface XmlAnnotationIntrospector
      • isOutputAsCData

        public java.lang.Boolean isOutputAsCData​(com.fasterxml.jackson.databind.introspect.Annotated ann)
        Description copied from interface: XmlAnnotationIntrospector
        Method used to check whether given annotated element (field, method, constructor parameter) has indicator that suggests it should be wrapped in a CDATA tag.
        Specified by:
        isOutputAsCData in interface XmlAnnotationIntrospector