1 5 6 7 package com.hp.hpl.jena.vocabulary; 8 9 import com.hp.hpl.jena.rdf.model.*; 10 11 15 public class DCTerms { 16 17 private static Model m_model = ModelFactory.createDefaultModel(); 18 19 20 public static final String NS = "http://purl.org/dc/terms/"; 21 22 24 public static String getURI() {return NS;} 25 26 27 public static final Resource NAMESPACE = m_model.createResource( NS ); 28 29 30 public static final Property audience = m_model.createProperty( "http://purl.org/dc/terms/audience" ); 31 32 35 public static final Property alternative = m_model.createProperty( "http://purl.org/dc/terms/alternative" ); 36 37 38 public static final Property tableOfContents = m_model.createProperty( "http://purl.org/dc/terms/tableOfContents" ); 39 40 41 public static final Property dcAbstract = m_model.createProperty( "http://purl.org/dc/terms/abstract" ); 42 43 44 public static final Property created = m_model.createProperty( "http://purl.org/dc/terms/created" ); 45 46 47 public static final Property valid = m_model.createProperty( "http://purl.org/dc/terms/valid" ); 48 49 50 public static final Property available = m_model.createProperty( "http://purl.org/dc/terms/available" ); 51 52 53 public static final Property issued = m_model.createProperty( "http://purl.org/dc/terms/issued" ); 54 55 56 public static final Property modified = m_model.createProperty( "http://purl.org/dc/terms/modified" ); 57 58 59 public static final Property extent = m_model.createProperty( "http://purl.org/dc/terms/extent" ); 60 61 62 public static final Property medium = m_model.createProperty( "http://purl.org/dc/terms/medium" ); 63 64 68 public static final Property isVersionOf = m_model.createProperty( "http://purl.org/dc/terms/isVersionOf" ); 69 70 73 public static final Property hasVersion = m_model.createProperty( "http://purl.org/dc/terms/hasVersion" ); 74 75 78 public static final Property isReplacedBy = m_model.createProperty( "http://purl.org/dc/terms/isReplacedBy" ); 79 80 83 public static final Property replaces = m_model.createProperty( "http://purl.org/dc/terms/replaces" ); 84 85 88 public static final Property isRequiredBy = m_model.createProperty( "http://purl.org/dc/terms/isRequiredBy" ); 89 90 93 public static final Property requires = m_model.createProperty( "http://purl.org/dc/terms/requires" ); 94 95 96 public static final Property isPartOf = m_model.createProperty( "http://purl.org/dc/terms/isPartOf" ); 97 98 101 public static final Property hasPart = m_model.createProperty( "http://purl.org/dc/terms/hasPart" ); 102 103 106 public static final Property isReferencedBy = m_model.createProperty( "http://purl.org/dc/terms/isReferencedBy" ); 107 108 111 public static final Property references = m_model.createProperty( "http://purl.org/dc/terms/references" ); 112 113 116 public static final Property isFormatOf = m_model.createProperty( "http://purl.org/dc/terms/isFormatOf" ); 117 118 121 public static final Property hasFormat = m_model.createProperty( "http://purl.org/dc/terms/hasFormat" ); 122 123 124 public static final Property conformsTo = m_model.createProperty( "http://purl.org/dc/terms/conformsTo" ); 125 126 127 public static final Property spatial = m_model.createProperty( "http://purl.org/dc/terms/spatial" ); 128 129 130 public static final Property temporal = m_model.createProperty( "http://purl.org/dc/terms/temporal" ); 131 132 135 public static final Property mediator = m_model.createProperty( "http://purl.org/dc/terms/mediator" ); 136 137 140 public static final Property dateAccepted = m_model.createProperty( "http://purl.org/dc/terms/dateAccepted" ); 141 142 143 public static final Property dateCopyrighted = m_model.createProperty( "http://purl.org/dc/terms/dateCopyrighted" ); 144 145 146 public static final Property dateSubmitted = m_model.createProperty( "http://purl.org/dc/terms/dateSubmitted" ); 147 148 152 public static final Property educationLevel = m_model.createProperty( "http://purl.org/dc/terms/educationLevel" ); 153 154 157 public static final Property accessRights = m_model.createProperty( "http://purl.org/dc/terms/accessRights" ); 158 159 160 public static final Property bibliographicCitation = m_model.createProperty( "http://purl.org/dc/terms/bibliographicCitation" ); 161 162 163 public static final Resource SubjectScheme = m_model.createResource( "http://purl.org/dc/terms/SubjectScheme" ); 164 165 166 public static final Resource DateScheme = m_model.createResource( "http://purl.org/dc/terms/DateScheme" ); 167 168 169 public static final Resource FormatScheme = m_model.createResource( "http://purl.org/dc/terms/FormatScheme" ); 170 171 172 public static final Resource LanguageScheme = m_model.createResource( "http://purl.org/dc/terms/LanguageScheme" ); 173 174 175 public static final Resource SpatialScheme = m_model.createResource( "http://purl.org/dc/terms/SpatialScheme" ); 176 177 178 public static final Resource TemporalScheme = m_model.createResource( "http://purl.org/dc/terms/TemporalScheme" ); 179 180 181 public static final Resource TypeScheme = m_model.createResource( "http://purl.org/dc/terms/TypeScheme" ); 182 183 184 public static final Resource IdentifierScheme = m_model.createResource( "http://purl.org/dc/terms/IdentifierScheme" ); 185 186 187 public static final Resource RelationScheme = m_model.createResource( "http://purl.org/dc/terms/RelationScheme" ); 188 189 190 public static final Resource SourceScheme = m_model.createResource( "http://purl.org/dc/terms/SourceScheme" ); 191 192 193 public static final Resource LCSH = m_model.createResource( "http://purl.org/dc/terms/LCSH" ); 194 195 196 public static final Resource MESH = m_model.createResource( "http://purl.org/dc/terms/MESH" ); 197 198 199 public static final Resource DDC = m_model.createResource( "http://purl.org/dc/terms/DDC" ); 200 201 202 public static final Resource LCC = m_model.createResource( "http://purl.org/dc/terms/LCC" ); 203 204 205 public static final Resource UDC = m_model.createResource( "http://purl.org/dc/terms/UDC" ); 206 207 210 public static final Resource DCMIType = m_model.createResource( "http://purl.org/dc/terms/DCMIType" ); 211 212 213 public static final Resource IMT = m_model.createResource( "http://purl.org/dc/terms/IMT" ); 214 215 216 public static final Resource ISO639_2 = m_model.createResource( "http://purl.org/dc/terms/ISO639-2" ); 217 218 222 public static final Resource RFC1766 = m_model.createResource( "http://purl.org/dc/terms/RFC1766" ); 223 224 225 public static final Resource URI = m_model.createResource( "http://purl.org/dc/terms/URI" ); 226 227 228 public static final Resource Point = m_model.createResource( "http://purl.org/dc/terms/Point" ); 229 230 231 public static final Resource ISO3166 = m_model.createResource( "http://purl.org/dc/terms/ISO3166" ); 232 233 234 public static final Resource Box = m_model.createResource( "http://purl.org/dc/terms/Box" ); 235 236 237 public static final Resource TGN = m_model.createResource( "http://purl.org/dc/terms/TGN" ); 238 239 240 public static final Resource Period = m_model.createResource( "http://purl.org/dc/terms/Period" ); 241 242 243 public static final Resource W3CDTF = m_model.createResource( "http://purl.org/dc/terms/W3CDTF" ); 244 245 252 public static final Resource RFC3066 = m_model.createResource( "http://purl.org/dc/terms/RFC3066" ); 253 254 } 255 256 282 283 | Popular Tags |