패키지 | mx.utils |
클래스 | public class XMLUtil |
상속 | XMLUtil Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
XMLUtil.qnamesEqual()
method.
공용 속성
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
[정적]
Creates XML out of the specified string, ignoring whitespace. | XMLUtil | ||
[정적]
Returns the XML value of an attribute matching the given QName
| XMLUtil | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
[정적]
Returns true if the two QName parameters have identical
uri and localName properties. | XMLUtil | ||
[정적]
Returns the concatenation of a Qname object's
uri and localName properties,
separated by a colon. | XMLUtil | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
메서드 세부 정보
createXMLDocument | () | 메서드 |
public static function createXMLDocument(str:String):XMLDocument
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
매개 변수
str:String — XML string.
|
XMLDocument — New XML object that ignored whitespace.
|
getAttributeByQName | () | 메서드 |
public static function getAttributeByQName(xml:XML, attrQName:QName):XMLList
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the XML value of an attribute matching the given QName
매개 변수
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 | () | 메서드 |
public static function qnamesEqual(qname1:QName, qname2:QName):Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns true
if the two QName parameters have identical
uri
and localName
properties.
매개 변수
qname1:QName — First QName object.
| |
qname2:QName — Second QName object.
|
Boolean — true if the two QName parameters have identical
uri and localName properties.
|
qnameToString | () | 메서드 |
public static function qnameToString(qname:QName):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
매개 변수
qname:QName — QName object.
|
String — Concatenation of a Qname object's
uri and localName properties,
separated by a colon.
|
Tue Jun 12 2018, 03:17 PM Z