Package io.netty.handler.codec.xml
Class XmlDocumentStart
- java.lang.Object
-
- io.netty.handler.codec.xml.XmlDocumentStart
-
public class XmlDocumentStart extends Object
Beginning of the XML document ... i.e. XML header
-
-
Constructor Summary
Constructors Constructor Description XmlDocumentStart(String encoding, String version, boolean standalone, String encodingScheme)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
encoding()
Return defined or guessed XML encodingString
encodingScheme()
Return defined encoding or nullboolean
equals(Object o)
int
hashCode()
boolean
standalone()
Return standalonity of the documentString
toString()
String
version()
Return defined XML version or null
-
-
-
Method Detail
-
encoding
public String encoding()
Return defined or guessed XML encoding
-
version
public String version()
Return defined XML version or null
-
standalone
public boolean standalone()
Return standalonity of the document
-
encodingScheme
public String encodingScheme()
Return defined encoding or null
-
-