|
| static const UShort | ANY_TYPE = 0 |
| static const UShort | NUMBER_TYPE = 1 |
| | The result is a number as defined by XPath 1.0.
|
| static const UShort | STRING_TYPE = 2 |
| | The result is a string as defined by XPath 1.0.
|
| static const UShort | BOOLEAN_TYPE = 3 |
| | The result is a boolean as defined by XPath 1.0.
|
| static const UShort | NODE_SET_TYPE = 4 |
| | The result is a node set as defined by XPath 1.0.
|
| static const UShort | SINGLE_NODE_TYPE = 5 |
Definition at line 1219 of file Dom.h.
◆ booleanValue()
| bool Arcane::dom::XPathResult::booleanValue |
( |
| ) |
const |
◆ getSetIterator()
◆ getSetSnapshot()
◆ numberValue()
| double Arcane::dom::XPathResult::numberValue |
( |
| ) |
const |
◆ resultType()
| UShort Arcane::dom::XPathResult::resultType |
( |
| ) |
const |
◆ singleNodeValue()
| Node Arcane::dom::XPathResult::singleNodeValue |
( |
| ) |
const |
◆ stringValue()
| DOMString Arcane::dom::XPathResult::stringValue |
( |
| ) |
const |
◆ ANY_TYPE
| const UShort Arcane::dom::XPathResult::ANY_TYPE = 0 |
|
static |
This code does not represent a specific type. An evaluation of an XPath expression will never produce this type. If this type is requested, then the evaluation must return whatever type Integerly results from evaluation of the expression.
Definition at line 1231 of file Dom.h.
◆ BOOLEAN_TYPE
| const UShort Arcane::dom::XPathResult::BOOLEAN_TYPE = 3 |
|
static |
The result is a boolean as defined by XPath 1.0.
Definition at line 1237 of file Dom.h.
◆ NODE_SET_TYPE
| const UShort Arcane::dom::XPathResult::NODE_SET_TYPE = 4 |
|
static |
The result is a node set as defined by XPath 1.0.
Definition at line 1239 of file Dom.h.
◆ NUMBER_TYPE
| const UShort Arcane::dom::XPathResult::NUMBER_TYPE = 1 |
|
static |
The result is a number as defined by XPath 1.0.
Definition at line 1233 of file Dom.h.
◆ SINGLE_NODE_TYPE
| const UShort Arcane::dom::XPathResult::SINGLE_NODE_TYPE = 5 |
|
static |
The result is a single node, which may be any node of the node set defined by XPath 1.0, or null if the node set is empty. This is a convenience that permits optimization where the caller knows that no more than one such node exists because evaluation can stop after finding the one node of an expression that would otherwise return a node set (of type NODE_SET_TYPE).
Where it is possible that multiple nodes may exist and the first node in document order is required, a NODE_SET_TYPE should be processed using an ordered iterator, because there is no order guarantee for a single node.
Definition at line 1253 of file Dom.h.
◆ STRING_TYPE
| const UShort Arcane::dom::XPathResult::STRING_TYPE = 2 |
|
static |
The result is a string as defined by XPath 1.0.
Definition at line 1235 of file Dom.h.
The documentation for this class was generated from the following files: