Class XmlInfo
- java.lang.Object
-
- com.fasterxml.jackson.dataformat.xml.util.XmlInfo
-
public class XmlInfo extends Object
Helper container class used to contain XML specific information we need to retain to construct proper bean serializer
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
_isAttribute
protected boolean
_isCData
protected boolean
_isText
protected String
_namespace
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNamespace()
boolean
isAttribute()
boolean
isCData()
boolean
isText()
-
-
-
Field Detail
-
_namespace
protected final String _namespace
-
_isAttribute
protected final boolean _isAttribute
-
_isText
protected final boolean _isText
-
_isCData
protected final boolean _isCData
-
-
Method Detail
-
getNamespace
public String getNamespace()
-
isAttribute
public boolean isAttribute()
-
isText
public boolean isText()
-
isCData
public boolean isCData()
-
-