1 5 6 9 10 package com.hp.hpl.jena.vocabulary; 11 12 import com.hp.hpl.jena.rdf.model.*; 13 14 20 public class DB { 21 22 public static final String uri = "http://jena.hpl.hp.com/2003/04/DB#"; 23 24 27 public static String getURI() { 28 return uri; 29 } 30 31 public static final Resource systemGraphName = ResourceFactory.createResource(uri + "SystemGraph" ); 32 public static final Resource layoutVersion = ResourceFactory.createResource( uri + "LayoutVersion" ); 33 public static final Property engineType = ResourceFactory.createProperty(uri + "EngineType" ); 34 public static final Property driverVersion = ResourceFactory.createProperty(uri + "DriverVersion" ); 35 public static final Property formatDate = ResourceFactory.createProperty(uri + "FormatDate" ); 36 public static final Property graph = ResourceFactory.createProperty(uri + "Graph" ); 37 38 public static final Property longObjectLength = ResourceFactory.createProperty(uri + "LongObjectLength" ); 39 public static final Property indexKeyLength = ResourceFactory.createProperty(uri + "IndexKeyLength" ); 40 public static final Property isTransactionDb = ResourceFactory.createProperty(uri + "IsTransactionDb" ); 41 public static final Property doCompressURI = ResourceFactory.createProperty(uri + "DoCompressURI" ); 42 public static final Property compressURILength = ResourceFactory.createProperty(uri + "CompressURILength" ); 43 public static final Property tableNamePrefix = ResourceFactory.createProperty(uri + "TableNamePrefix" ); 44 45 public static final Property graphName = ResourceFactory.createProperty(uri + "GraphName" ); 46 public static final Property graphType = ResourceFactory.createProperty(uri + "GraphType" ); 47 public static final Property graphLSet = ResourceFactory.createProperty(uri + "GraphLSet" ); 48 public static final Property graphPrefix = ResourceFactory.createProperty(uri + "GraphPrefix" ); 49 public static final Property graphId = ResourceFactory.createProperty(uri + "GraphId" ); 50 public static final Property graphDBSchema = ResourceFactory.createProperty(uri + "GraphDBSchema" ); 51 public static final Property stmtTable = ResourceFactory.createProperty(uri + "StmtTable" ); 52 public static final Property reifTable = ResourceFactory.createProperty(uri + "ReifTable" ); 53 54 55 public static final Property prefixValue = ResourceFactory.createProperty(uri + "PrefixValue" ); 56 public static final Property prefixURI = ResourceFactory.createProperty(uri + "PrefixURI" ); 57 58 public static final Property lSetName = ResourceFactory.createProperty(uri + "LSetName" ); 59 public static final Property lSetType = ResourceFactory.createProperty(uri + "LSetType" ); 60 public static final Property lSetPSet = ResourceFactory.createProperty(uri + "LSetPSet" ); 61 62 public static final Property pSetName = ResourceFactory.createProperty(uri + "PSetName" ); 63 public static final Property pSetType = ResourceFactory.createProperty(uri + "PSetType" ); 64 public static final Property pSetTable = ResourceFactory.createProperty(uri + "PSetTable" ); 65 66 public static final Resource undefined = ResourceFactory.createResource(uri + "undefined" ) ; 67 } 68 69 95 96 | Popular Tags |