GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
XML::GDOME::XPath::Result(3) User Contributed Perl Documentation XML::GDOME::XPath::Result(3)

  XML::GDOME::XPath::Result - Interface XPathResult implementation.

  $int  = $xpresult->getResultType();
  $bool = $xpresult->getBooleanValue();
  $num  = $xpresult->getNumberValue();
  $str  = $xpresult->getStringValue();
  $node = $xpresult->getSingleNodeValue();
  $node = $xpresult->iterateNext();

$int = $xpresult->getResultType();
Returns: a code representing the type of this result, as defined by the type constants.
$bool = $xpresult->getBooleanValue();
Returns: the value of this boolean result.
$num = $xpresult->getNumberValue();
Returns: the value of this number result.
$str = $xpresult->getStringValue();
Returns: the value of this GdomeDOMString result.
$node = $xpresult->getSingleNodeValue();
Returns: The value of this single node result, which may be undef. This result is not guaranteed to be the first node in document order where the expression evaluates to multiple nodes.
$node = $xpresult->iterateNext();
Iterates and returns the next node from the node set or undef if there are no more nodes.

Returns: the next node.

2002-09-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.