|
Oracle® Database XML Java API Reference 10g Release 2 (10.2) B14293-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.xdb.dom.XDBNode
oracle.xdb.dom.XDBCharData
This class implements the W3C CharacterData interface
Field Summary |
Fields inherited from class oracle.xdb.dom.XDBNode |
m_conn, m_owner, m_xobcstate |
Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
Method Summary | |
void |
appendData(java.lang.String appstring) append the specified string to the char data |
void |
deleteData(int offset, int count) delete the specified substring string from the char data |
java.lang.String |
getData() Returns the char data |
int |
getLength() gets the length of the char data |
void |
insertData(int offset, java.lang.String appstring) insert the specified string into the char data |
void |
replaceData(int offset, int count, java.lang.String repdata) replace the specified substring string in the char data |
void |
setData(java.lang.String data) sets the char data |
java.lang.String |
substringData(int offset, int count) gets the specified substring of the char data |
Methods inherited from class oracle.xdb.dom.XDBNode |
appendChild, cloneNode, close, equals, finalize, getAttributes, getChildNodes, getExpandedName, getFirstChild, getInputStream, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeFromCState, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getPrimitiveType, getQualifiedName, getSchemaNode, hasAttributes, hasChildNodes, hashCode, insertBefore, isClosed, isNilled, isSchemaBased, isSupported, normalize, removeChild, replaceChild, setNodeValue, setNodeXob, setOwner, setPrefix, setXobCstate, toCState, toString, validateName, write, writeToOutputStream |
Methods inherited from class java.lang.Object |
clone, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.w3c.dom.Node |
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix |
Method Detail |
public java.lang.String getData() throws DOMException
getData
in interface CharacterData
DOMException
- NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.public void setData(java.lang.String data) throws DOMException
setData
in interface CharacterData
DOMException
public int getLength() throws DOMException
getLength
in interface CharacterData
DOMException
public java.lang.String substringData(int offset, int count) throws DOMException
substringData
in interface CharacterData
DOMException
- INDEX_SIZE_ERR: Raised if the specified offset
is negative or greater than the number of 16-bit units in data
, or if the specified count
is negative.DOMString
.public void appendData(java.lang.String appstring) throws DOMException
appendData
in interface CharacterData
DOMException
- NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.public void insertData(int offset, java.lang.String appstring) throws DOMException
insertData
in interface CharacterData
DOMException
- INDEX_SIZE_ERR: Raised if the specified offset
is negative or greater than the number of 16-bit units in data
.public void deleteData(int offset, int count) throws DOMException
deleteData
in interface CharacterData
DOMException
- INDEX_SIZE_ERR: Raised if the specified offset
is negative or greater than the number of 16-bit units in data
, or if the specified count
is negative.public void replaceData(int offset, int count, java.lang.String repdata) throws DOMException
replaceData
in interface CharacterData
DOMException
- INDEX_SIZE_ERR: Raised if the specified offset
is negative or greater than the number of 16-bit units in data
, or if the specified count
is negative.
|
Oracle® Database XML Java API Reference 10g Release 2 (10.2) B14293-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |