@Deprecated
public class XML
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.lang.Character |
AMP
Deprecated.
The Character '&'.
|
static java.lang.Character |
APOS
Deprecated.
The Character '''.
|
static java.lang.Character |
BANG
Deprecated.
The Character '!'.
|
static java.lang.Character |
EQ
Deprecated.
The Character '='.
|
static java.lang.Character |
GT
Deprecated.
The Character '>'.
|
static java.lang.Character |
LT
Deprecated.
The Character '<'.
|
static java.lang.Character |
QUEST
Deprecated.
The Character '?'.
|
static java.lang.Character |
QUOT
Deprecated.
The Character '"'.
|
static java.lang.Character |
SLASH
Deprecated.
The Character '/'.
|
Constructor and Description |
---|
XML()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
escape(java.lang.String string)
Deprecated.
Replace special characters with XML escapes:
|
static JSONObject |
toJSONObject(java.lang.String string)
Deprecated.
Convert a well-formed (but not necessarily valid) XML string into a
JSONObject.
|
static java.lang.String |
toString(java.lang.Object o)
Deprecated.
Convert a JSONObject into a well-formed, element-normal XML string.
|
static java.lang.String |
toString(java.lang.Object o,
java.lang.String tagName)
Deprecated.
Convert a JSONObject into a well-formed, element-normal XML string.
|
public static final java.lang.Character AMP
public static final java.lang.Character APOS
public static final java.lang.Character BANG
public static final java.lang.Character EQ
public static final java.lang.Character GT
public static final java.lang.Character LT
public static final java.lang.Character QUEST
public static final java.lang.Character QUOT
public static final java.lang.Character SLASH
public static java.lang.String escape(java.lang.String string)
& (ampersand) is replaced by & < (less than) is replaced by < > (greater than) is replaced by > " (double quote) is replaced by "
string
- The string to be escaped.public static JSONObject toJSONObject(java.lang.String string) throws JSONException
<[ [ ]]>
are ignored.string
- The source string.JSONException
public static java.lang.String toString(java.lang.Object o) throws JSONException
o
- A JSONObject.JSONException
public static java.lang.String toString(java.lang.Object o, java.lang.String tagName) throws JSONException
o
- A JSONObject.tagName
- The optional name of the enclosing tag.JSONException
Copyright © 2010 - 2020 Adobe. All Rights Reserved