|
Oracle® Database XML Java API Reference 12c Release 1 (12.1) E15981-09 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CharacterDataEditVAL
This interface extends the NodeEditVAL
interface with additional methods for document editing. An object implementing this interface must also implement CharacterData
interface.
See also the Document Object Model (DOM) Level 3 Validation Specification.
Field Summary |
---|
Fields inherited from interface org.w3c.dom.validation.NodeEditVAL |
---|
VAL_FALSE, VAL_INCOMPLETE, VAL_NS_WF, VAL_SCHEMA, VAL_TRUE, VAL_UNKNOWN, VAL_WF |
Method Summary | |
---|---|
short |
canAppendData(java.lang.String arg) Determines if data can be appended. |
short |
canDeleteData(int offset, int count) Determines if data can be deleted. |
short |
canInsertData(int offset, java.lang.String arg) Determines if data can be inserted. |
short |
canReplaceData(int offset, int count, java.lang.String arg) Determines if data can be replaced. |
short |
canSetData(java.lang.String arg) Determines if data can be set. |
short |
isWhitespaceOnly() Determines if data is only whitespace. |
Methods inherited from interface org.w3c.dom.validation.NodeEditVAL |
---|
canAppendChild, canInsertBefore, canRemoveChild, canReplaceChild, getDefaultValue, getEnumeratedValues, nodeValidity |
Method Detail |
---|
short isWhitespaceOnly()
short canSetData(java.lang.String arg)
arg
- Argument to be set.short canAppendData(java.lang.String arg)
arg
- Data to be appended.short canReplaceData(int offset, int count, java.lang.String arg) throws DOMException
offset
- Offset.count
- Replacement.arg
- Argument to be set.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.short canInsertData(int offset, java.lang.String arg) throws DOMException
offset
- Offset.arg
- Argument to be set.DOMException
- INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of 16-bit units in data.short canDeleteData(int offset, int count) throws DOMException
offset
- Offset.count
- Number of 16-bit units to delete.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 12c Release 1 (12.1) E15981-09 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright ©2004 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark, document use and software licensing rules apply.