github.com/cayleygraph/cayley@v0.7.7/voc/rdfs/rdfs.go (about) 1 // Package rdfs is deprecated. Use github.com/cayleygraph/quad/voc/rdfs. 2 package rdfs 3 4 import "github.com/cayleygraph/quad/voc/rdfs" 5 6 const ( 7 NS = rdfs.NS 8 Prefix = rdfs.Prefix 9 ) 10 11 const ( 12 // Classes 13 14 // The class resource, everything. 15 // 16 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 17 Resource = rdfs.Resource 18 // The class of classes. 19 // 20 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 21 Class = rdfs.Class 22 // The class of literal values, eg. textual strings and integers. 23 // 24 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 25 Literal = rdfs.Literal 26 // The class of RDF containers. 27 // 28 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 29 Container = rdfs.Container 30 // The class of RDF datatypes. 31 // 32 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 33 Datatype = rdfs.Datatype 34 // The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'. 35 // 36 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 37 ContainerMembershipProperty = rdfs.ContainerMembershipProperty 38 39 // Properties 40 41 // The subject is a subclass of a class. 42 // 43 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 44 SubClassOf = rdfs.SubClassOf 45 // The subject is a subproperty of a property. 46 // 47 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 48 SubPropertyOf = rdfs.SubPropertyOf 49 // A description of the subject resource. 50 // 51 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 52 Comment = rdfs.Comment 53 // A human-readable name for the subject. 54 // 55 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 56 Label = rdfs.Label 57 // A domain of the subject property. 58 // 59 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 60 Domain = rdfs.Domain 61 // A range of the subject property. 62 // 63 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 64 Range = rdfs.Range 65 // Further information about the subject resource. 66 // 67 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 68 SeeAlso = rdfs.SeeAlso 69 // The defininition of the subject resource. 70 // 71 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 72 IsDefinedBy = rdfs.IsDefinedBy 73 // A member of the subject resource. 74 // 75 // Deprecated: use github.com/cayleygraph/quad/voc/rdfs package instead. 76 Member = rdfs.Member 77 )