Package jadex.xml.stax
Class XmlUtil
- java.lang.Object
-
- jadex.xml.stax.XmlUtil
-
public class XmlUtil extends java.lang.Object
Class holding stax-compatible constants and utility functions.
-
-
Field Summary
Fields Modifier and Type Field Description static int
CDATA
static int
CHARACTERS
Indicates an event is characters.static int
COMMENT
static int
END_ELEMENT
Indicates an event is an end element.static int
START_ELEMENT
Indicates an event is a start element.
-
Constructor Summary
Constructors Constructor Description XmlUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
unescapeString(java.lang.String string)
Unescapes strings for xml.
-
-
-
Field Detail
-
START_ELEMENT
public static final int START_ELEMENT
Indicates an event is a start element.- See Also:
- Constant Field Values
-
END_ELEMENT
public static final int END_ELEMENT
Indicates an event is an end element.- See Also:
- Constant Field Values
-
CHARACTERS
public static final int CHARACTERS
Indicates an event is characters.- See Also:
- Constant Field Values
-
COMMENT
public static final int COMMENT
- See Also:
- Constant Field Values
-
CDATA
public static final int CDATA
- See Also:
- Constant Field Values
-
-