PageRenderTime 40ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/projects/jena-2.6.3/com/hp/hpl/jena/vocabulary/DB.java

https://gitlab.com/essere.lab.public/qualitas.class-corpus
Java | 95 lines | 37 code | 16 blank | 42 comment | 0 complexity | 81c100f67cac065618e8569b47d33c90 MD5 | raw file
  1. /*
  2. * (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
  3. * [see end of file]
  4. */
  5. /* Vocabulary Class for DB.
  6. *
  7. */
  8. package com.hp.hpl.jena.vocabulary;
  9. import com.hp.hpl.jena.rdf.model.*;
  10. /**
  11. * Vocabulary for Database properties.
  12. *
  13. * @author csayers
  14. * @version $Revision: 1.1 $
  15. */
  16. public class DB {
  17. public static final String uri = "http://jena.hpl.hp.com/2003/04/DB#";
  18. /** returns the URI for this schema
  19. * @return the URI for this schema
  20. */
  21. public static String getURI() {
  22. return uri;
  23. }
  24. public static final Resource systemGraphName = ResourceFactory.createResource(uri + "SystemGraph" );
  25. public static final Resource layoutVersion = ResourceFactory.createResource( uri + "LayoutVersion" );
  26. public static final Property engineType = ResourceFactory.createProperty(uri + "EngineType" );
  27. public static final Property driverVersion = ResourceFactory.createProperty(uri + "DriverVersion" );
  28. public static final Property formatDate = ResourceFactory.createProperty(uri + "FormatDate" );
  29. public static final Property graph = ResourceFactory.createProperty(uri + "Graph" );
  30. public static final Property longObjectLength = ResourceFactory.createProperty(uri + "LongObjectLength" );
  31. public static final Property indexKeyLength = ResourceFactory.createProperty(uri + "IndexKeyLength" );
  32. public static final Property isTransactionDb = ResourceFactory.createProperty(uri + "IsTransactionDb" );
  33. public static final Property doCompressURI = ResourceFactory.createProperty(uri + "DoCompressURI" );
  34. public static final Property compressURILength = ResourceFactory.createProperty(uri + "CompressURILength" );
  35. public static final Property tableNamePrefix = ResourceFactory.createProperty(uri + "TableNamePrefix" );
  36. public static final Property graphName = ResourceFactory.createProperty(uri + "GraphName" );
  37. public static final Property graphType = ResourceFactory.createProperty(uri + "GraphType" );
  38. public static final Property graphLSet = ResourceFactory.createProperty(uri + "GraphLSet" );
  39. public static final Property graphPrefix = ResourceFactory.createProperty(uri + "GraphPrefix" );
  40. public static final Property graphId = ResourceFactory.createProperty(uri + "GraphId" );
  41. public static final Property graphDBSchema = ResourceFactory.createProperty(uri + "GraphDBSchema" );
  42. public static final Property stmtTable = ResourceFactory.createProperty(uri + "StmtTable" );
  43. public static final Property reifTable = ResourceFactory.createProperty(uri + "ReifTable" );
  44. public static final Property prefixValue = ResourceFactory.createProperty(uri + "PrefixValue" );
  45. public static final Property prefixURI = ResourceFactory.createProperty(uri + "PrefixURI" );
  46. public static final Property lSetName = ResourceFactory.createProperty(uri + "LSetName" );
  47. public static final Property lSetType = ResourceFactory.createProperty(uri + "LSetType" );
  48. public static final Property lSetPSet = ResourceFactory.createProperty(uri + "LSetPSet" );
  49. public static final Property pSetName = ResourceFactory.createProperty(uri + "PSetName" );
  50. public static final Property pSetType = ResourceFactory.createProperty(uri + "PSetType" );
  51. public static final Property pSetTable = ResourceFactory.createProperty(uri + "PSetTable" );
  52. public static final Resource undefined = ResourceFactory.createResource(uri + "undefined" ) ;
  53. }
  54. /*
  55. * (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
  56. * All rights reserved.
  57. *
  58. * Redistribution and use in source and binary forms, with or without
  59. * modification, are permitted provided that the following conditions
  60. * are met:
  61. * 1. Redistributions of source code must retain the above copyright
  62. * notice, this list of conditions and the following disclaimer.
  63. * 2. Redistributions in binary form must reproduce the above copyright
  64. * notice, this list of conditions and the following disclaimer in the
  65. * documentation and/or other materials provided with the distribution.
  66. * 3. The name of the author may not be used to endorse or promote products
  67. * derived from this software without specific prior written permission.
  68. *
  69. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  70. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  71. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  72. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  73. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  74. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  75. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  76. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  77. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  78. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  79. */