1 18 19 package com.hp.hpl.jena.vocabulary; 22 23 24 import com.hp.hpl.jena.rdf.model.*; 27 28 29 30 31 41 public interface DAMLVocabulary 42 { 43 44 45 46 public static final String NAMESPACE_DAML_2001_03_URI = "http://www.daml.org/2001/03/daml+oil#"; 47 48 49 public static final String NAMESPACE_DAML_2000_12_URI = "http://www.daml.org/2000/12/daml+oil#"; 50 51 52 53 54 55 public Resource NAMESPACE_DAML(); 56 57 58 public Resource List(); 59 60 61 public Resource UniqueProperty(); 62 63 64 public Resource TransitiveProperty(); 65 66 67 public Resource UnambiguousProperty(); 68 69 70 public Resource Restriction(); 71 72 73 public Resource Ontology(); 74 75 76 public Resource nil(); 77 78 79 public Resource Thing(); 80 81 82 public Resource Nothing(); 83 84 85 public Resource Literal(); 86 87 88 public Resource Class(); 89 90 91 public Resource Datatype(); 92 93 94 public Resource DatatypeProperty(); 95 96 97 public Resource ObjectProperty(); 98 99 100 public Resource Property(); 101 102 103 104 105 106 public Property versionInfo(); 107 108 109 public Property imports(); 110 111 112 public Property disjointWith(); 113 114 115 public Property disjointUnionOf(); 116 117 118 public Property sameClassAs(); 119 120 121 public Property samePropertyAs(); 122 123 124 public Property oneOf(); 125 126 127 public Property intersectionOf(); 128 129 130 public Property unionOf(); 131 132 133 public Property complementOf(); 134 135 136 public Property equivalentTo(); 137 138 139 public Property onProperty(); 140 141 142 public Property toClass(); 143 144 145 public Property hasValue(); 146 147 148 public Property hasClass(); 149 150 151 public Property hasClassQ(); 152 153 154 public Property cardinality(); 155 156 157 public Property minCardinality(); 158 159 160 public Property maxCardinality(); 161 162 163 public Property cardinalityQ(); 164 165 166 public Property minCardinalityQ(); 167 168 169 public Property maxCardinalityQ(); 170 171 172 public Property inverseOf(); 173 174 175 public Property first(); 176 177 178 public Property rest(); 179 180 181 public Property item(); 182 183 184 public Property subPropertyOf(); 185 186 187 public Property type(); 188 189 190 public Property value(); 191 192 193 public Property subClassOf(); 194 195 196 public Property domain(); 197 198 199 public Property range(); 200 201 202 public Property label(); 203 204 205 public Property comment(); 206 207 208 public Property seeAlso(); 209 210 211 public Property isDefinedBy(); 212 213 214 public Property sameIndividualAs(); 215 216 217 public Property differentIndividualFrom(); 218 219 220 } 221 222 223 252 253 | Popular Tags |