Uses of Interface
com.bigdata.rdf.model.BigdataValueFactory

Packages that use BigdataValueFactory
com.bigdata.bop.rdf.aggregate   
com.bigdata.rdf.axioms   
com.bigdata.rdf.internal This package provides an internal representation of RDF Values. 
com.bigdata.rdf.internal.constraints   
com.bigdata.rdf.internal.impl.extensions   
com.bigdata.rdf.lexicon   
com.bigdata.rdf.model This package provides a tuned implementation of the Sesame RDF data model for the RDF database. 
com.bigdata.rdf.rio This package provides an integration with the openrdf RIO parser that supports fast data loads. 
com.bigdata.rdf.sail This package contains the SAIL that allow bigdata to be used as a backend for the Sesame 2.x platform. 
com.bigdata.rdf.sail.sparql This package was imported from the org.openrdf.query.parser.sparql package of the openrdf distribution. 
com.bigdata.rdf.sparql.ast.eval   
com.bigdata.rdf.store This package provides several realizations of an RDF database using the bigdata architecture, including one suitable for temporary data, one suitable for local processing (single host), and one designed for scale-out on commodity hardware. 
 

Uses of BigdataValueFactory in com.bigdata.bop.rdf.aggregate
 

Fields in com.bigdata.bop.rdf.aggregate declared as BigdataValueFactory
protected  BigdataValueFactory GROUP_CONCAT.vf
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.axioms
 

Methods in com.bigdata.rdf.axioms that return BigdataValueFactory
protected  BigdataValueFactory BaseAxioms.getValueFactory()
          The value factory to be used when creating axioms.
 

Uses of BigdataValueFactory in com.bigdata.rdf.internal
 

Methods in com.bigdata.rdf.internal that return BigdataValueFactory
 BigdataValueFactory ILexiconConfiguration.getValueFactory()
          Return the value factory for the lexicon.
 BigdataValueFactory LexiconConfiguration.getValueFactory()
           
 

Methods in com.bigdata.rdf.internal with parameters of type BigdataValueFactory
 V IExtension.asValue(LiteralExtensionIV iv, BigdataValueFactory vf)
          Create an RDF value from an LiteralExtensionIV.
 

Constructors in com.bigdata.rdf.internal with parameters of type BigdataValueFactory
LexiconConfiguration(boolean inlineXSDDatatypeLiterals, boolean inlineTextLiterals, int maxInlineTextLength, boolean inlineBNodes, boolean inlineDateTimes, boolean rejectInvalidXSDValues, IExtensionFactory xFactory, Vocabulary vocab, BigdataValueFactory valueFactory)
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.internal.constraints
 

Methods in com.bigdata.rdf.internal.constraints that return BigdataValueFactory
protected  BigdataValueFactory IVValueExpression.getValueFactory()
          Return the BigdataValueFactory for the LexiconRelation.
 BigdataValueFactory MathBOp.vf()
           
 

Methods in com.bigdata.rdf.internal.constraints with parameters of type BigdataValueFactory
static IV DateTimeUtility.dateTimeMath(Literal l1, IV iv1, Literal l2, IV iv2, MathBOp.MathOp op, BigdataValueFactory vf, ILexiconConfiguration lc)
           
 BigdataLiteral ReplaceBOp.evaluate(BigdataValueFactory valueFactory, Value... args)
          Lifted directly from Sesame's Replace operator.
 

Uses of BigdataValueFactory in com.bigdata.rdf.internal.impl.extensions
 

Methods in com.bigdata.rdf.internal.impl.extensions with parameters of type BigdataValueFactory
 V DerivedNumericsExtension.asValue(LiteralExtensionIV iv, BigdataValueFactory vf)
          Use the BigInteger value of the XSDIntegerIV delegate to create a datatype literal value with the appropriate datatype.
 V USDFloatExtension.asValue(LiteralExtensionIV iv, BigdataValueFactory vf)
           
 V XSDStringExtension.asValue(LiteralExtensionIV iv, BigdataValueFactory vf)
           
 V DateTimeExtension.asValue(LiteralExtensionIV iv, BigdataValueFactory vf)
          Use the long value of the XSDLongIV delegate (which represents milliseconds since the epoch) to create a an XMLGregorianCalendar object (GMT timezone).
 

Uses of BigdataValueFactory in com.bigdata.rdf.lexicon
 

Methods in com.bigdata.rdf.lexicon that return BigdataValueFactory
 BigdataValueFactory LexiconRelation.getValueFactory()
          The canonical BigdataValueFactoryImpl reference (JVM wide) for the lexicon namespace.
 

Methods in com.bigdata.rdf.lexicon that return types with arguments of type BigdataValueFactory
protected  Class<BigdataValueFactory> LexiconRelation.determineValueFactoryClass()
           
 

Constructors in com.bigdata.rdf.lexicon with parameters of type BigdataValueFactory
BlobsTupleSerializer(String namespace, BigdataValueFactory valueFactory)
           
BlobsWriteTask(IIndex ndx, BigdataValueFactory valueFactory, boolean readOnly, boolean storeBlankNodes, int numTerms, BigdataValue[] terms, WriteTaskStats stats)
           
Id2TermTupleSerializer(String namespace, BigdataValueFactory valueFactory)
           
Id2TermTupleSerializer(String namespace, BigdataValueFactory valueFactory, IKeyBuilderFactory keyBuilderFactory, IRabaCoder leafKeysCoder, IRabaCoder leafValsCoder)
           
ReverseIndexWriterTask(IIndex idTermIndex, BigdataValueFactory valueFactory, KVO<BigdataValue>[] a, int ndistinct, boolean storeBlankNodes)
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.model
 

Classes in com.bigdata.rdf.model that implement BigdataValueFactory
 class BigdataValueFactoryImpl
          An implementation using BigdataValues and BigdataStatements.
 class BNodeContextFactory
          Class provides a document-scoped context for generating blank node identifiers (IDs).
 

Methods in com.bigdata.rdf.model that return BigdataValueFactory
static BigdataValueFactory BigdataValueFactoryImpl.getInstance(String namespace)
          Return the instance associated with the namespace.
 BigdataValueFactory BigdataValueImpl.getValueFactory()
           
 BigdataValueFactory BigdataValue.getValueFactory()
          Return the factory which produced this object.
 BigdataValueFactory BigdataValueFactory.newBNodeContext()
          Returns a factory that will assign its blank node IDs within a globally unique namespace.
 BigdataValueFactory BNodeContextFactory.newBNodeContext()
          Recursive contexts are not available (should not be necessary, right?)
 

Constructors in com.bigdata.rdf.model with parameters of type BigdataValueFactory
BigdataResourceImpl(BigdataValueFactory valueFactory, IV iv)
           
BigdataValueImpl(BigdataValueFactory valueFactory, IV iv)
           
BNodeContextFactory(BigdataValueFactory valueFactory)
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.rio
 

Fields in com.bigdata.rdf.rio declared as BigdataValueFactory
protected  BigdataValueFactory StatementBuffer.valueFactory
           
 

Methods in com.bigdata.rdf.rio that return BigdataValueFactory
 BigdataValueFactory AbstractStatementBuffer.getValueFactory()
          The ValueFactory for Statements and Values created by this class.
 

Uses of BigdataValueFactory in com.bigdata.rdf.sail
 

Methods in com.bigdata.rdf.sail that return BigdataValueFactory
 BigdataValueFactory BigdataSailRepositoryConnection.getValueFactory()
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.sail.sparql
 

Fields in com.bigdata.rdf.sail.sparql declared as BigdataValueFactory
protected  BigdataValueFactory BigdataASTContext.valueFactory
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.sparql.ast.eval
 

Fields in com.bigdata.rdf.sparql.ast.eval declared as BigdataValueFactory
 BigdataValueFactory AST2BOpUpdateContext.f
           
 

Uses of BigdataValueFactory in com.bigdata.rdf.store
 

Methods in com.bigdata.rdf.store that return BigdataValueFactory
 BigdataValueFactory AbstractTripleStore.getValueFactory()
          The BigdataValueFactoryImpl for namespace of the LexiconRelation associated with this AbstractTripleStore.
 



Copyright © 2006-2011 SYSTAP, LLC. All Rights Reserved.