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
RDFStore::RDFNode(3) User Contributed Perl Documentation RDFStore::RDFNode(3)

RDFStore::RDFNode - An RDF graph node

        package myNode;

        use RDFStore::RDFNode;
        @myNode::ISA = qw ( RDFStore::RDFNode );

        sub new {
                my $self = $_[0]->SUPER::new();
                $self->{mylabel} = $_[1];
                bless $self,$_[0];
        };

        sub getLabel {
                return $_[0]->{mylabel};
        };

        package main;

        my $node = new myNode('My generic node');
        my $node1 = new myNode('Your generic node');

        print $node->toString." is ";
        print "not "
                unless $node->equals($node1);
        print " equal to ".$node1->toString."\n";

RDFStore::RDFNode is the base abstract class for RDFStore::Literal and RDFStore::Resource.

new
This is a class method, the constructor for RDFStore::RDFNode.
getLabel
Return the label of the RDFNode as perl scalar
toString
Return the textual represention of the RDFNode
getDigest
Return a Cryptographic Digest (SHA-1 by default) of the node label - see RDFStore::Digest::Digestable(3)
equals
Compare two RDFNodes.

RDFStore::Literal(3) RDFStore::Resource(3) RDFStore(3) RDFStore::Digest::Digestable(3)

 http://www.w3.org/TR/rdf-primer/

 http://www.w3.org/TR/rdf-mt

 http://www.w3.org/TR/rdf-syntax-grammar/

 http://www.w3.org/TR/rdf-schema/

 http://www.w3.org/TR/1999/REC-rdf-syntax-19990222 (obsolete)

        Alberto Reggiori <areggiori@webweaving.org>

Hey! The above document had some coding errors, which are explained below:
Around line 118:
You forgot a '=back' before '=head1'
2006-06-19 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.