// Code generated by astool. DO NOT EDIT. package vocab import "net/url" // Specifies the measurement units for the radius and altitude properties on a // Place object. If not specified, the default is assumed to be "m" for // "meters". // // Example 136 (https://www.w3.org/TR/activitystreams-vocabulary/#ex157-jsonld): // { // "latitude": 36.75, // "longitude": 119.7667, // "name": "Fresno Area", // "radius": 15, // "type": "Place", // "units": "miles" // } type ActivityStreamsUnitsProperty interface { // Clear ensures no value of this property is set. Calling HasAny or any // of the 'Is' methods afterwards will return false. Clear() // GetIRI returns the IRI of this property. When IsIRI returns false, // GetIRI will return an arbitrary value. GetIRI() *url.URL // GetXMLSchemaAnyURI returns the value of this property. When // IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an // arbitrary value. GetXMLSchemaAnyURI() *url.URL // GetXMLSchemaString returns the value of this property. When // IsXMLSchemaString returns false, GetXMLSchemaString will return an // arbitrary value. GetXMLSchemaString() string // HasAny returns true if any of the different values is set. HasAny() bool // IsIRI returns true if this property is an IRI. When true, use GetIRI // and SetIRI to access and set this property IsIRI() bool // IsXMLSchemaAnyURI returns true if this property has a type of "anyURI". // When true, use the GetXMLSchemaAnyURI and SetXMLSchemaAnyURI // methods to access and set this property. IsXMLSchemaAnyURI() bool // IsXMLSchemaString returns true if this property has a type of "string". // When true, use the GetXMLSchemaString and SetXMLSchemaString // methods to access and set this property. IsXMLSchemaString() bool // JSONLDContext returns the JSONLD URIs required in the context string // for this property and the specific values that are set. The value // in the map is the alias used to import the property's value or // values. JSONLDContext() map[string]string // KindIndex computes an arbitrary value for indexing this kind of value. // This is a leaky API detail only for folks looking to replace the // go-fed implementation. Applications should not use this method. KindIndex() int // LessThan compares two instances of this property with an arbitrary but // stable comparison. Applications should not use this because it is // only meant to help alternative implementations to go-fed to be able // to normalize nonfunctional properties. LessThan(o ActivityStreamsUnitsProperty) bool // Name returns the name of this property: "units". Name() string // Serialize converts this into an interface representation suitable for // marshalling into a text or binary format. Applications should not // need this function as most typical use cases serialize types // instead of individual properties. It is exposed for alternatives to // go-fed implementations to use. Serialize() (interface{}, error) // SetIRI sets the value of this property. Calling IsIRI afterwards // returns true. SetIRI(v *url.URL) // SetXMLSchemaAnyURI sets the value of this property. Calling // IsXMLSchemaAnyURI afterwards returns true. SetXMLSchemaAnyURI(v *url.URL) // SetXMLSchemaString sets the value of this property. Calling // IsXMLSchemaString afterwards returns true. SetXMLSchemaString(v string) }