Paket | mx.utils |
Klass | public class XMLUtil |
Arv | XMLUtil Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
XMLUtil.qnamesEqual()
method.
Publika egenskaper
Publika metoder
Metod | Definieras med | ||
---|---|---|---|
[statisk]
Creates XML out of the specified string, ignoring whitespace. | XMLUtil | ||
[statisk]
Returns the XML value of an attribute matching the given QName
| XMLUtil | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
[statisk]
Returns true if the two QName parameters have identical
uri and localName properties. | XMLUtil | ||
[statisk]
Returns the concatenation of a Qname object's
uri and localName properties,
separated by a colon. | XMLUtil | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object |
Metoddetaljer
createXMLDocument | () | metod |
public static function createXMLDocument(str:String):XMLDocument
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Creates XML out of the specified string, ignoring whitespace.
This method is used to create objects defined in
<mx:XML>
tags and WebService requests,
although they, in turn, get the firstChild
of the structure.
Parametrar
str:String — XML string.
|
XMLDocument — New XML object that ignored whitespace.
|
getAttributeByQName | () | metod |
public static function getAttributeByQName(xml:XML, attrQName:QName):XMLList
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns the XML value of an attribute matching the given QName
Parametrar
xml:XML — the XML object being inspected
| |
attrQName:QName — the QName of the attribute to find
|
XMLList — XMLList of matching attributes or an empty list if none are found.
|
qnamesEqual | () | metod |
public static function qnamesEqual(qname1:QName, qname2:QName):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns true
if the two QName parameters have identical
uri
and localName
properties.
Parametrar
qname1:QName — First QName object.
| |
qname2:QName — Second QName object.
|
Boolean — true if the two QName parameters have identical
uri and localName properties.
|
qnameToString | () | metod |
public static function qnameToString(qname:QName):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns the concatenation of a Qname object's
uri
and localName
properties,
separated by a colon.
If the object does not have a uri
property,
or the value of uri
is the empty string,
returns the localName
property.
Parametrar
qname:QName — QName object.
|
String — Concatenation of a Qname object's
uri and localName properties,
separated by a colon.
|
Tue Jun 12 2018, 01:40 PM Z