パッケージ org.xmlpull.v1.builder
インタフェース XmlAttribute
-
- すべてのスーパーインタフェース:
Cloneable
- 既知の実装クラスのリスト:
XmlAttributeAdapter,XmlAttributeImpl
public interface XmlAttribute extends Cloneable
This is immutable value object that represents Attribute Information Item with exception of references property. Note: namespace and prefix properties are folded into XmlNamespace value object.- バージョン:
- $Revision: 1.6 $
- 作成者:
- Aleksander Slominski
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 Objectclone()Method cloneStringgetName()XML Infoset [local name] propertyXmlNamespacegetNamespace()Combination of XML Infoset [namespace name] and [prefix] propertiesStringgetNamespaceName()return XML Infoset [namespace name] property (namespaceName from getNamespace() or null if attribute has no namespaceXmlElementgetOwner()XML Infoset [owner element] propertyStringgetType()XML Infoset [attribute type]StringgetValue()XML Infoset [normalized value] propertybooleanisSpecified()XML Infoset [specified] flag
-
-
-
メソッドの詳細
-
clone
Object clone() throws CloneNotSupportedException
Method clone- 戻り値:
- an Object
- 例外:
CloneNotSupportedException
-
getOwner
XmlElement getOwner()
XML Infoset [owner element] property
-
getNamespaceName
String getNamespaceName()
return XML Infoset [namespace name] property (namespaceName from getNamespace() or null if attribute has no namespace
-
getNamespace
XmlNamespace getNamespace()
Combination of XML Infoset [namespace name] and [prefix] properties
-
getName
String getName()
XML Infoset [local name] property
-
getValue
String getValue()
XML Infoset [normalized value] property
-
getType
String getType()
XML Infoset [attribute type]
-
isSpecified
boolean isSpecified()
XML Infoset [specified] flag
-
-