Pacote | mx.utils |
Classe | public class XMLUtil |
Herança | XMLUtil Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
XMLUtil.qnamesEqual()
method.
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
[estático]
Creates XML out of the specified string, ignoring whitespace. | XMLUtil | ||
[estático]
Returns the XML value of an attribute matching the given QName
| XMLUtil | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
[estático]
Returns true if the two QName parameters have identical
uri and localName properties. | XMLUtil | ||
[estático]
Returns the concatenation of a Qname object's
uri and localName properties,
separated by a colon. | XMLUtil | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
Detalhes do método
createXMLDocument | () | método |
public static function createXMLDocument(str:String):XMLDocument
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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.
Parâmetros
str:String — XML string.
|
XMLDocument — New XML object that ignored whitespace.
|
getAttributeByQName | () | método |
public static function getAttributeByQName(xml:XML, attrQName:QName):XMLList
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns the XML value of an attribute matching the given QName
Parâmetros
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 | () | método |
public static function qnamesEqual(qname1:QName, qname2:QName):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns true
if the two QName parameters have identical
uri
and localName
properties.
Parâmetros
qname1:QName — First QName object.
| |
qname2:QName — Second QName object.
|
Boolean — true if the two QName parameters have identical
uri and localName properties.
|
qnameToString | () | método |
public static function qnameToString(qname:QName):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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.
Parâmetros
qname:QName — QName object.
|
String — Concatenation of a Qname object's
uri and localName properties,
separated by a colon.
|
Wed Jun 13 2018, 11:10 AM Z