Package system.xml.linq
Class XElement
- java.lang.Object
-
- All Implemented Interfaces:
IJCOBridgeReflected
,IXmlSerializable
public class XElement extends XContainer implements IXmlSerializable
The base .NET class managing System.Xml.Linq.XElement, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Xml.Linq.XElement
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Xml.Linqstatic java.lang.String
className
Qualified class name: System.Xml.Linq.XElementstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description XAttribute
Attribute(XName name)
static XElement
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoXElement
, a cast assert is made to check if types are compatible.XNamespace
GetDefaultNamespace()
XAttribute
getFirstAttribute()
boolean
getHasAttributes()
boolean
getHasElements()
boolean
getIsEmpty()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeXAttribute
getLastAttribute()
XName
getName()
XNamespace
GetNamespaceOfPrefix(java.lang.String prefix)
java.lang.String
GetPrefixOfNamespace(XNamespace ns)
java.lang.String
getValue()
static XElement
Load(java.lang.String uri)
static XElement
Load(java.lang.String uri, LoadOptions options)
static XElement
Load(Stream stream)
static XElement
Load(Stream stream, LoadOptions options)
static XElement
Load(TextReader textReader)
static XElement
Load(TextReader textReader, LoadOptions options)
static XElement
Load(XmlReader reader)
static XElement
Load(XmlReader reader, LoadOptions options)
static XElement
Parse(java.lang.String text)
static XElement
Parse(java.lang.String text, LoadOptions options)
void
RemoveAll()
void
RemoveAttributes()
void
ReplaceAll(NetObject content)
void
ReplaceAll(NetObject... content)
void
ReplaceAttributes(NetObject content)
void
ReplaceAttributes(NetObject... content)
void
Save(java.lang.String fileName)
void
Save(java.lang.String fileName, SaveOptions options)
void
Save(Stream stream)
void
Save(Stream stream, SaveOptions options)
void
Save(TextWriter textWriter)
void
Save(TextWriter textWriter, SaveOptions options)
void
Save(XmlWriter writer)
void
SetAttributeValue(XName name, NetObject value)
void
SetElementValue(XName name, NetObject value)
void
setJCOInstance(JCObject instance)
void
setName(XName Name)
void
setValue(java.lang.String Value)
void
SetValue(NetObject value)
void
WriteTo(XmlWriter writer)
-
Methods inherited from class system.xml.linq.XContainer
Add, Add, AddFirst, AddFirst, CreateWriter, Element, getFirstNode, getLastNode, RemoveNodes, ReplaceNodes, ReplaceNodes
-
Methods inherited from class system.xml.linq.XNode
AddAfterSelf, AddAfterSelf, AddBeforeSelf, AddBeforeSelf, CompareDocumentOrder, CreateReader, CreateReader, DeepEquals, getDocumentOrderComparer, getEqualityComparer, getNextNode, getPreviousNode, IsAfter, IsBefore, ReadFrom, Remove, ReplaceWith, ReplaceWith, ToString
-
Methods inherited from class system.xml.linq.XObject
AddAnnotation, Annotation, getBaseUri, getDocument, getNodeType, getParent, RemoveAnnotations
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.xml.serialization.IXmlSerializable
GetSchema, ReadXml, WriteXml
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Xml.Linq- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Xml.Linq.XElement- See Also:
- Constant Field Values
-
-
Constructor Detail
-
XElement
public XElement(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
XElement
public XElement() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
XElement
public XElement(XElement other) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
XElement
public XElement(XName name) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
XElement
public XElement(XName name, NetObject content) throws java.lang.Throwable, ArgumentNullException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, OverflowException
-
XElement
public XElement(XName name, NetObject... content) throws java.lang.Throwable, ArgumentNullException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException
-
XElement
public XElement(XStreamingElement other) throws java.lang.Throwable, ArgumentNullException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, OverflowException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOAssemblyName
in interfaceIXmlSerializable
- Overrides:
getJCOAssemblyName
in classXContainer
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOClassName
in interfaceIXmlSerializable
- Overrides:
getJCOClassName
in classXContainer
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOObjectName
in interfaceIXmlSerializable
- Overrides:
getJCOObjectName
in classXContainer
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Specified by:
getJCOInstance
in interfaceIXmlSerializable
- Overrides:
getJCOInstance
in classXContainer
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classXContainer
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Specified by:
getJCOType
in interfaceIXmlSerializable
- Overrides:
getJCOType
in classXContainer
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static XElement cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoXElement
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
XElement
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetPrefixOfNamespace
public java.lang.String GetPrefixOfNamespace(XNamespace ns) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
Attribute
public XAttribute Attribute(XName name) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Load
public static XElement Load(Stream stream) throws java.lang.Throwable, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, ArgumentNullException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ArgumentException, FormatException, CultureNotFoundException, OverflowException
- Throws:
java.lang.Throwable
InvalidOperationException
SecurityException
UnauthorizedAccessException
IOException
ArgumentNullException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
ArgumentException
FormatException
CultureNotFoundException
OverflowException
-
Load
public static XElement Load(Stream stream, LoadOptions options) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, ArgumentException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, FormatException, XmlSchemaException, OverflowException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
ArgumentException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
IOException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
FormatException
XmlSchemaException
OverflowException
-
Load
public static XElement Load(TextReader textReader) throws java.lang.Throwable, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, ArgumentNullException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, CultureNotFoundException, OverflowException
- Throws:
java.lang.Throwable
InvalidOperationException
SecurityException
UnauthorizedAccessException
IOException
ArgumentNullException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
CultureNotFoundException
OverflowException
-
Load
public static XElement Load(TextReader textReader, LoadOptions options) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, ArgumentException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, FormatException, XmlSchemaException, OverflowException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
ArgumentException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
IOException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
FormatException
XmlSchemaException
OverflowException
-
Load
public static XElement Load(java.lang.String uri) throws java.lang.Throwable, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, ArgumentNullException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, ArgumentException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, AggregateException, FormatException, CultureNotFoundException, OverflowException
- Throws:
java.lang.Throwable
InvalidOperationException
SecurityException
UnauthorizedAccessException
IOException
ArgumentNullException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
ArgumentException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
AggregateException
FormatException
CultureNotFoundException
OverflowException
-
Load
public static XElement Load(java.lang.String uri, LoadOptions options) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, ArgumentException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, TaskSchedulerException, OperationCanceledException, AggregateException, FormatException, XmlSchemaException, OverflowException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
ArgumentException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
IOException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
TaskSchedulerException
OperationCanceledException
AggregateException
FormatException
XmlSchemaException
OverflowException
-
Load
public static XElement Load(XmlReader reader) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OverflowException
-
Load
public static XElement Load(XmlReader reader, LoadOptions options) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OverflowException
-
Parse
public static XElement Parse(java.lang.String text) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, CultureNotFoundException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
InvalidOperationException
SecurityException
UnauthorizedAccessException
IOException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
CultureNotFoundException
OverflowException
-
Parse
public static XElement Parse(java.lang.String text, LoadOptions options) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, MissingManifestResourceException, ArgumentOutOfRangeException, XmlException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, FormatException, XmlSchemaException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
InvalidOperationException
ArgumentException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
IOException
MissingManifestResourceException
ArgumentOutOfRangeException
XmlException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
FormatException
XmlSchemaException
OverflowException
-
GetDefaultNamespace
public XNamespace GetDefaultNamespace() throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
OverflowException
-
GetNamespaceOfPrefix
public XNamespace GetNamespaceOfPrefix(java.lang.String prefix) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OverflowException
-
RemoveAll
public void RemoveAll() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
RemoveAttributes
public void RemoveAttributes() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
ReplaceAll
public void ReplaceAll(NetObject content) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException
-
ReplaceAll
public void ReplaceAll(NetObject... content) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException
-
ReplaceAttributes
public void ReplaceAttributes(NetObject content) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OverflowException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OverflowException
-
ReplaceAttributes
public void ReplaceAttributes(NetObject... content) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException
-
Save
public void Save(Stream stream) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, MissingManifestResourceException, XmlException, ObjectDisposedException, ArgumentException, NotSupportedException, NotImplementedException
-
Save
public void Save(Stream stream, SaveOptions options) throws java.lang.Throwable, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, MissingManifestResourceException, InvalidOperationException, XmlException, ObjectDisposedException, AbandonedMutexException, ArgumentException, NotSupportedException, NotImplementedException
-
Save
public void Save(TextWriter textWriter) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, MissingManifestResourceException, XmlException, NotImplementedException, NotSupportedException, ArgumentException
-
Save
public void Save(TextWriter textWriter, SaveOptions options) throws java.lang.Throwable, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, MissingManifestResourceException, InvalidOperationException, XmlException, NotImplementedException, NotSupportedException, ObjectDisposedException, ArgumentException
-
Save
public void Save(java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, MissingManifestResourceException, XmlException, ArgumentException, PathTooLongException, CultureNotFoundException, NotSupportedException, NullReferenceException, SecurityException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
MissingManifestResourceException
XmlException
ArgumentException
PathTooLongException
CultureNotFoundException
NotSupportedException
NullReferenceException
SecurityException
IOException
-
Save
public void Save(java.lang.String fileName, SaveOptions options) throws java.lang.Throwable, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentNullException, MissingManifestResourceException, InvalidOperationException, XmlException, ArgumentException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, NullReferenceException, SecurityException, ObjectDisposedException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentNullException
MissingManifestResourceException
InvalidOperationException
XmlException
ArgumentException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NotSupportedException
NullReferenceException
SecurityException
ObjectDisposedException
NotImplementedException
-
Save
public void Save(XmlWriter writer) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
SetAttributeValue
public void SetAttributeValue(XName name, NetObject value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, OverflowException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
OverflowException
IndexOutOfRangeException
-
SetElementValue
public void SetElementValue(XName name, NetObject value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, OverflowException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
OverflowException
IndexOutOfRangeException
-
SetValue
public void SetValue(NetObject value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, FormatException
-
WriteTo
public void WriteTo(XmlWriter writer) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, OverflowException
- Overrides:
WriteTo
in classXNode
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
OverflowException
-
getHasAttributes
public boolean getHasAttributes() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getHasElements
public boolean getHasElements() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsEmpty
public boolean getIsEmpty() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getValue
public java.lang.String getValue() throws java.lang.Throwable, ArgumentNullException, FormatException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
FormatException
ArgumentOutOfRangeException
-
setValue
public void setValue(java.lang.String Value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OverflowException
-
getFirstAttribute
public XAttribute getFirstAttribute() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getLastAttribute
public XAttribute getLastAttribute() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getName
public XName getName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setName
public void setName(XName Name) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
-