Documentation ¶
Overview ¶
Package propertyunits contains the implementation for the units property. All applications are strongly encouraged to use the interface instead of this concrete definition. The interfaces allow applications to consume only the types and properties needed and be independent of the go-fed implementation if another alternative implementation is created. This package is code-generated and subject to the same license as the go-fed tool used to generate it.
This package is independent of other types' and properties' implementations by having a Manager injected into it to act as a factory for the concrete implementations. The implementations have been generated into their own separate subpackages for each vocabulary.
Strongly consider using the interfaces instead of this package.
Index ¶
- func SetManager(m privateManager)
- type ActivityStreamsUnitsProperty
- func (this *ActivityStreamsUnitsProperty) Clear()
- func (this ActivityStreamsUnitsProperty) GetIRI() *url.URL
- func (this ActivityStreamsUnitsProperty) GetXMLSchemaAnyURI() *url.URL
- func (this ActivityStreamsUnitsProperty) GetXMLSchemaString() string
- func (this ActivityStreamsUnitsProperty) HasAny() bool
- func (this ActivityStreamsUnitsProperty) IsIRI() bool
- func (this ActivityStreamsUnitsProperty) IsXMLSchemaAnyURI() bool
- func (this ActivityStreamsUnitsProperty) IsXMLSchemaString() bool
- func (this ActivityStreamsUnitsProperty) JSONLDContext() map[string]string
- func (this ActivityStreamsUnitsProperty) KindIndex() int
- func (this ActivityStreamsUnitsProperty) LessThan(o vocab.ActivityStreamsUnitsProperty) bool
- func (this ActivityStreamsUnitsProperty) Name() string
- func (this ActivityStreamsUnitsProperty) Serialize() (interface{}, error)
- func (this *ActivityStreamsUnitsProperty) SetIRI(v *url.URL)
- func (this *ActivityStreamsUnitsProperty) SetXMLSchemaAnyURI(v *url.URL)
- func (this *ActivityStreamsUnitsProperty) SetXMLSchemaString(v string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetManager ¶
func SetManager(m privateManager)
SetManager sets the manager package-global variable. For internal use only, do not use as part of Application behavior. Must be called at golang init time.
Types ¶
type ActivityStreamsUnitsProperty ¶
type ActivityStreamsUnitsProperty struct {
// contains filtered or unexported fields
}
ActivityStreamsUnitsProperty is the functional property "units". It is permitted to be one of multiple value types. At most, one type of value can be present, or none at all. Setting a value will clear the other types of values so that only one of the 'Is' methods will return true. It is possible to clear all values, so that this property is empty.
func DeserializeUnitsProperty ¶
func DeserializeUnitsProperty(m map[string]interface{}, aliasMap map[string]string) (*ActivityStreamsUnitsProperty, error)
DeserializeUnitsProperty creates a "units" property from an interface representation that has been unmarshalled from a text or binary format.
func NewActivityStreamsUnitsProperty ¶
func NewActivityStreamsUnitsProperty() *ActivityStreamsUnitsProperty
NewActivityStreamsUnitsProperty creates a new units property.
func (*ActivityStreamsUnitsProperty) Clear ¶
func (this *ActivityStreamsUnitsProperty) Clear()
Clear ensures no value of this property is set. Calling HasAny or any of the 'Is' methods afterwards will return false.
func (ActivityStreamsUnitsProperty) GetIRI ¶
func (this ActivityStreamsUnitsProperty) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return an arbitrary value.
func (ActivityStreamsUnitsProperty) GetXMLSchemaAnyURI ¶
func (this ActivityStreamsUnitsProperty) GetXMLSchemaAnyURI() *url.URL
GetXMLSchemaAnyURI returns the value of this property. When IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an arbitrary value.
func (ActivityStreamsUnitsProperty) GetXMLSchemaString ¶
func (this ActivityStreamsUnitsProperty) GetXMLSchemaString() string
GetXMLSchemaString returns the value of this property. When IsXMLSchemaString returns false, GetXMLSchemaString will return an arbitrary value.
func (ActivityStreamsUnitsProperty) HasAny ¶
func (this ActivityStreamsUnitsProperty) HasAny() bool
HasAny returns true if any of the different values is set.
func (ActivityStreamsUnitsProperty) IsIRI ¶
func (this ActivityStreamsUnitsProperty) IsIRI() bool
IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI to access and set this property
func (ActivityStreamsUnitsProperty) IsXMLSchemaAnyURI ¶
func (this ActivityStreamsUnitsProperty) IsXMLSchemaAnyURI() 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.
func (ActivityStreamsUnitsProperty) IsXMLSchemaString ¶
func (this ActivityStreamsUnitsProperty) IsXMLSchemaString() 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.
func (ActivityStreamsUnitsProperty) JSONLDContext ¶
func (this ActivityStreamsUnitsProperty) JSONLDContext() map[string]string
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.
func (ActivityStreamsUnitsProperty) KindIndex ¶
func (this ActivityStreamsUnitsProperty) KindIndex() int
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.
func (ActivityStreamsUnitsProperty) LessThan ¶
func (this ActivityStreamsUnitsProperty) LessThan(o vocab.ActivityStreamsUnitsProperty) bool
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.
func (ActivityStreamsUnitsProperty) Name ¶
func (this ActivityStreamsUnitsProperty) Name() string
Name returns the name of this property: "units".
func (ActivityStreamsUnitsProperty) Serialize ¶
func (this ActivityStreamsUnitsProperty) Serialize() (interface{}, error)
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.
func (*ActivityStreamsUnitsProperty) SetIRI ¶
func (this *ActivityStreamsUnitsProperty) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
func (*ActivityStreamsUnitsProperty) SetXMLSchemaAnyURI ¶
func (this *ActivityStreamsUnitsProperty) SetXMLSchemaAnyURI(v *url.URL)
SetXMLSchemaAnyURI sets the value of this property. Calling IsXMLSchemaAnyURI afterwards returns true.
func (*ActivityStreamsUnitsProperty) SetXMLSchemaString ¶
func (this *ActivityStreamsUnitsProperty) SetXMLSchemaString(v string)
SetXMLSchemaString sets the value of this property. Calling IsXMLSchemaString afterwards returns true.