Class TDB

java.lang.Object
org.apache.jena.tdb.TDB

@Deprecated public class TDB extends Object
Deprecated.
Use TDB1
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final org.slf4j.Logger
    Deprecated.
    Logger for general information
    static final String
    Deprecated.
    Logger for general information
    static final org.slf4j.Logger
    Deprecated.
    Logger for loading information
    static final String
    Deprecated.
    Logger for loading information
    static final String
    Deprecated.
     
    static final String
    Deprecated.
     
    static final String
    Deprecated.
    The root package name for TDB
    static final org.apache.jena.sparql.util.Symbol
    Deprecated.
    Symbol to use the union of named graphs as the default graph of a query
    static final String
    Deprecated.
     
    static final String
    Deprecated.
    IRI for TDB
    static final String
    Deprecated.
    Root of TDB-defined parameter names
    static final String
    Deprecated.
    Prefix for TDB-defined parameter names
    static final org.apache.jena.sparql.util.Symbol
    Deprecated.
    A String enum Symbol that specifies the type of temporary storage for transaction journal write blocks.
    static final String
    Deprecated.
    The full name of the current TDB version
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    Deprecated.
    Release any and all system resources held by TDB.
    static org.apache.jena.sparql.util.Context
    Deprecated.
     
    static void
    Deprecated.
    TDB System initialization - normally, this is not explicitly called because Jena system wide initialization occurs automatically.
    static void
    Deprecated.
    Set the global flag that control the "No BGP optimizer" warning.
    static void
    sync(org.apache.jena.graph.Graph graph)
    Deprecated.
    Sync a TDB-backed Graph.
    static void
    sync(org.apache.jena.query.Dataset dataset)
    Deprecated.
    Sync a TDB-backed Dataset.
    static void
    sync(org.apache.jena.rdf.model.Model model)
    Deprecated.
    Sync a TDB-backed Model.
    static void
    sync(org.apache.jena.sparql.core.DatasetGraph dataset)
    Deprecated.
    Sync a TDB-backed DatasetGraph.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • tdbIRI

      public static final String tdbIRI
      Deprecated.
      IRI for TDB
      See Also:
    • tdbParamNS

      public static final String tdbParamNS
      Deprecated.
      Root of TDB-defined parameter names
      See Also:
    • tdbSymbolPrefix

      public static final String tdbSymbolPrefix
      Deprecated.
      Prefix for TDB-defined parameter names
      See Also:
    • logLoaderName

      public static final String logLoaderName
      Deprecated.
      Logger for loading information
      See Also:
    • logLoader

      public static final org.slf4j.Logger logLoader
      Deprecated.
      Logger for loading information
    • logInfoName

      public static final String logInfoName
      Deprecated.
      Logger for general information
      See Also:
    • logInfo

      public static final org.slf4j.Logger logInfo
      Deprecated.
      Logger for general information
    • namespace

      public static final String namespace
      Deprecated.
      See Also:
    • symUnionDefaultGraph

      public static final org.apache.jena.sparql.util.Symbol symUnionDefaultGraph
      Deprecated.
      Symbol to use the union of named graphs as the default graph of a query
    • transactionJournalWriteBlockMode

      public static final org.apache.jena.sparql.util.Symbol transactionJournalWriteBlockMode
      Deprecated.
      A String enum Symbol that specifies the type of temporary storage for transaction journal write blocks.

      "mem" = Java heap memory (default)
      "direct" = Process heap memory
      "mapped" = Memory mapped temporary file

    • PATH

      public static final String PATH
      Deprecated.
      The root package name for TDB
      See Also:
    • NAME

      public static final String NAME
      Deprecated.
      See Also:
    • VERSION

      public static final String VERSION
      Deprecated.
      The full name of the current TDB version
  • Method Details

    • getContext

      public static org.apache.jena.sparql.util.Context getContext()
      Deprecated.
    • closedown

      public static void closedown()
      Deprecated.
      Release any and all system resources held by TDB. This does NOT close or release datasets or graphs held by client code.
    • setOptimizerWarningFlag

      public static void setOptimizerWarningFlag(boolean b)
      Deprecated.
      Set the global flag that control the "No BGP optimizer" warning. Set to false to silence the warning
    • sync

      public static void sync(org.apache.jena.rdf.model.Model model)
      Deprecated.
      Sync a TDB-backed Model. Do nothing if not TDB-backed.
    • sync

      public static void sync(org.apache.jena.graph.Graph graph)
      Deprecated.
      Sync a TDB-backed Graph. Do nothing if not TDB-backed.
    • sync

      public static void sync(org.apache.jena.query.Dataset dataset)
      Deprecated.
      Sync a TDB-backed Dataset. Do nothing if not TDB-backed.
    • sync

      public static void sync(org.apache.jena.sparql.core.DatasetGraph dataset)
      Deprecated.
      Sync a TDB-backed DatasetGraph. Do nothing if not TDB-backed.
    • init

      public static void init()
      Deprecated.
      TDB System initialization - normally, this is not explicitly called because Jena system wide initialization occurs automatically. However, calling it repeatedly is safe and low cost.