org.omwg.ordi.rdf
Interface TripleStore

All Known Implementing Classes:
SesameImpl

public interface TripleStore

Title:

Description:

Copyright: Copyright (c) 2004-2005

Company: Ontotext Lab., Sirma AI

Version:
1.0
Author:
unascribed

Method Summary
 void addStatement(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, org.wsmo.common.Identifier obj)
           
 void addStatement(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, java.lang.String literal)
           
 void beginUpdate()
           
 boolean canUpdate()
           
 void commitUpdate()
           
 TripleIterator getStatements(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, org.wsmo.common.Identifier obj)
           
 TripleIterator getStatements(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, java.lang.String literal)
           
 boolean hasStatement(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, org.wsmo.common.Identifier obj)
           
 boolean hasStatement(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, java.lang.String literal)
           
 void initialize(java.util.Map params)
           
 int removeStatements(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred)
           
 int removeStatements(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, org.wsmo.common.Identifier obj)
           
 int removeStatements(org.wsmo.common.Identifier subj, org.wsmo.common.IRI pred, java.lang.String literal)
           
 void shutdown()
           
 

Method Detail

initialize

void initialize(java.util.Map params)

shutdown

void shutdown()

getStatements

TripleIterator getStatements(org.wsmo.common.Identifier subj,
                             org.wsmo.common.IRI pred,
                             org.wsmo.common.Identifier obj)

getStatements

TripleIterator getStatements(org.wsmo.common.Identifier subj,
                             org.wsmo.common.IRI pred,
                             java.lang.String literal)

hasStatement

boolean hasStatement(org.wsmo.common.Identifier subj,
                     org.wsmo.common.IRI pred,
                     org.wsmo.common.Identifier obj)

hasStatement

boolean hasStatement(org.wsmo.common.Identifier subj,
                     org.wsmo.common.IRI pred,
                     java.lang.String literal)

addStatement

void addStatement(org.wsmo.common.Identifier subj,
                  org.wsmo.common.IRI pred,
                  org.wsmo.common.Identifier obj)

addStatement

void addStatement(org.wsmo.common.Identifier subj,
                  org.wsmo.common.IRI pred,
                  java.lang.String literal)

removeStatements

int removeStatements(org.wsmo.common.Identifier subj,
                     org.wsmo.common.IRI pred)

removeStatements

int removeStatements(org.wsmo.common.Identifier subj,
                     org.wsmo.common.IRI pred,
                     org.wsmo.common.Identifier obj)

removeStatements

int removeStatements(org.wsmo.common.Identifier subj,
                     org.wsmo.common.IRI pred,
                     java.lang.String literal)

canUpdate

boolean canUpdate()

beginUpdate

void beginUpdate()

commitUpdate

void commitUpdate()