Java javax.xml.soap DetailEntry fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.soap DetailEntry fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.soap DetailEntry.

The text is from its open source code.

Method

SOAPElementaddChildElement(Name name)
Creates a new SOAPElement object initialized with the given Name object and adds the new element to this SOAPElement object.
SOAPElementaddTextNode(String text)
Creates a new Text object initialized with the given String and adds it to this SOAPElement object.
IteratorgetAllAttributes()
Returns an Iterator over all of the attribute Name objects in this SOAPElement object.
StringgetAttributeValue(Name name)
Returns the value of the attribute with the specified name.
StringgetValue()
Returns the value of this node if this is a Text node or the value of the immediate child of this node otherwise.
voidsetValue(String value)
If this is a Text node then this method will set its value, otherwise it sets the value of the immediate (Text) child of this node.