github.com/cayleygraph/cayley@v0.7.7/voc/rdf/rdf.go (about) 1 // Package rdf is deprecated. Use github.com/cayleygraph/quad/voc/rdf. 2 package rdf 3 4 import ( 5 "github.com/cayleygraph/quad/voc/rdf" 6 ) 7 8 const ( 9 NS = rdf.NS 10 Prefix = rdf.Prefix 11 ) 12 13 const ( 14 // Types 15 16 // The datatype of RDF literals storing fragments of HTML content 17 // 18 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 19 HTML = rdf.HTML 20 // The datatype of language-tagged string values 21 // 22 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 23 LangString = rdf.LangString 24 // The class of plain (i.e. untyped) literal values, as used in RIF and OWL 2 25 // 26 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 27 PlainLiteral = rdf.PlainLiteral 28 // The class of RDF properties. 29 // 30 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 31 Property = rdf.Property 32 // The class of RDF statements. 33 // 34 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 35 Statement = rdf.Statement 36 37 // Properties 38 39 // The subject is an instance of a class. 40 // 41 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 42 Type = rdf.Type 43 // Idiomatic property used for structured values. 44 // 45 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 46 Value = rdf.Value 47 // The subject of the subject RDF statement. 48 // 49 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 50 Subject = rdf.Subject 51 // The predicate of the subject RDF statement. 52 // 53 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 54 Predicate = rdf.Predicate 55 // The object of the subject RDF statement. 56 // 57 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 58 Object = rdf.Object 59 60 // The class of unordered containers. 61 // 62 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 63 Bag = rdf.Bag 64 // The class of ordered containers. 65 // 66 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 67 Seq = rdf.Seq 68 // The class of containers of alternatives. 69 // 70 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 71 Alt = rdf.Alt 72 // The class of RDF Lists. 73 // 74 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 75 List = rdf.List 76 // The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it. 77 // 78 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 79 Nil = rdf.Nil 80 // The first item in the subject RDF list. 81 // 82 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 83 First = rdf.First 84 // The rest of the subject RDF list after the first item. 85 // 86 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 87 Rest = rdf.Rest 88 // The datatype of XML literal values. 89 // 90 // Deprecated: use github.com/cayleygraph/quad/voc/rdf package instead. 91 XMLLiteral = rdf.XMLLiteral 92 )