Documentation ¶
Overview ¶
Package propertyalsoknownas contains the implementation for the alsoKnownAs 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 DeserializeAlsoKnownAsProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsAlsoKnownAsProperty, error)
- func SetManager(m privateManager)
- type ActivityStreamsAlsoKnownAsProperty
- func (this *ActivityStreamsAlsoKnownAsProperty) AppendIRI(v *url.URL)
- func (this *ActivityStreamsAlsoKnownAsProperty) AppendXMLSchemaAnyURI(v *url.URL)
- func (this ActivityStreamsAlsoKnownAsProperty) At(index int) vocab.ActivityStreamsAlsoKnownAsPropertyIterator
- func (this ActivityStreamsAlsoKnownAsProperty) Begin() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
- func (this ActivityStreamsAlsoKnownAsProperty) Empty() bool
- func (this ActivityStreamsAlsoKnownAsProperty) End() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
- func (this *ActivityStreamsAlsoKnownAsProperty) InsertIRI(idx int, v *url.URL)
- func (this *ActivityStreamsAlsoKnownAsProperty) InsertXMLSchemaAnyURI(idx int, v *url.URL)
- func (this ActivityStreamsAlsoKnownAsProperty) JSONLDContext() map[string]string
- func (this ActivityStreamsAlsoKnownAsProperty) KindIndex(idx int) int
- func (this ActivityStreamsAlsoKnownAsProperty) Len() (length int)
- func (this ActivityStreamsAlsoKnownAsProperty) Less(i, j int) bool
- func (this ActivityStreamsAlsoKnownAsProperty) LessThan(o vocab.ActivityStreamsAlsoKnownAsProperty) bool
- func (this ActivityStreamsAlsoKnownAsProperty) Name() string
- func (this *ActivityStreamsAlsoKnownAsProperty) PrependIRI(v *url.URL)
- func (this *ActivityStreamsAlsoKnownAsProperty) PrependXMLSchemaAnyURI(v *url.URL)
- func (this *ActivityStreamsAlsoKnownAsProperty) Remove(idx int)
- func (this ActivityStreamsAlsoKnownAsProperty) Serialize() (interface{}, error)
- func (this *ActivityStreamsAlsoKnownAsProperty) Set(idx int, v *url.URL)
- func (this *ActivityStreamsAlsoKnownAsProperty) SetIRI(idx int, v *url.URL)
- func (this ActivityStreamsAlsoKnownAsProperty) Swap(i, j int)
- type ActivityStreamsAlsoKnownAsPropertyIterator
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) Get() *url.URL
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) GetIRI() *url.URL
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) HasAny() bool
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) IsIRI() bool
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) IsXMLSchemaAnyURI() bool
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) JSONLDContext() map[string]string
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) KindIndex() int
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) LessThan(o vocab.ActivityStreamsAlsoKnownAsPropertyIterator) bool
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) Name() string
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) Next() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
- func (this ActivityStreamsAlsoKnownAsPropertyIterator) Prev() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
- func (this *ActivityStreamsAlsoKnownAsPropertyIterator) Set(v *url.URL)
- func (this *ActivityStreamsAlsoKnownAsPropertyIterator) SetIRI(v *url.URL)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeserializeAlsoKnownAsProperty ¶
func DeserializeAlsoKnownAsProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsAlsoKnownAsProperty, error)
DeserializeAlsoKnownAsProperty creates a "alsoKnownAs" property from an interface representation that has been unmarshalled from a text or binary format.
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 ActivityStreamsAlsoKnownAsProperty ¶
type ActivityStreamsAlsoKnownAsProperty struct {
// contains filtered or unexported fields
}
ActivityStreamsAlsoKnownAsProperty is the non-functional property "alsoKnownAs". It is permitted to have one or more values, and of different value types.
func NewActivityStreamsAlsoKnownAsProperty ¶
func NewActivityStreamsAlsoKnownAsProperty() *ActivityStreamsAlsoKnownAsProperty
NewActivityStreamsAlsoKnownAsProperty creates a new alsoKnownAs property.
func (*ActivityStreamsAlsoKnownAsProperty) AppendIRI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) AppendIRI(v *url.URL)
AppendIRI appends an IRI value to the back of a list of the property "alsoKnownAs"
func (*ActivityStreamsAlsoKnownAsProperty) AppendXMLSchemaAnyURI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) AppendXMLSchemaAnyURI(v *url.URL)
AppendXMLSchemaAnyURI appends a anyURI value to the back of a list of the property "alsoKnownAs". Invalidates iterators that are traversing using Prev.
func (ActivityStreamsAlsoKnownAsProperty) At ¶
func (this ActivityStreamsAlsoKnownAsProperty) At(index int) vocab.ActivityStreamsAlsoKnownAsPropertyIterator
At returns the property value for the specified index. Panics if the index is out of bounds.
func (ActivityStreamsAlsoKnownAsProperty) Begin ¶
func (this ActivityStreamsAlsoKnownAsProperty) Begin() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
Begin returns the first iterator, or nil if empty. Can be used with the iterator's Next method and this property's End method to iterate from front to back through all values.
func (ActivityStreamsAlsoKnownAsProperty) Empty ¶
func (this ActivityStreamsAlsoKnownAsProperty) Empty() bool
Empty returns returns true if there are no elements.
func (ActivityStreamsAlsoKnownAsProperty) End ¶
func (this ActivityStreamsAlsoKnownAsProperty) End() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
End returns beyond-the-last iterator, which is nil. Can be used with the iterator's Next method and this property's Begin method to iterate from front to back through all values.
func (*ActivityStreamsAlsoKnownAsProperty) InsertIRI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) InsertIRI(idx int, v *url.URL)
Insert inserts an IRI value at the specified index for a property "alsoKnownAs". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsAlsoKnownAsProperty) InsertXMLSchemaAnyURI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) InsertXMLSchemaAnyURI(idx int, v *url.URL)
InsertXMLSchemaAnyURI inserts a anyURI value at the specified index for a property "alsoKnownAs". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (ActivityStreamsAlsoKnownAsProperty) JSONLDContext ¶
func (this ActivityStreamsAlsoKnownAsProperty) 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 (ActivityStreamsAlsoKnownAsProperty) KindIndex ¶
func (this ActivityStreamsAlsoKnownAsProperty) KindIndex(idx int) int
KindIndex computes an arbitrary value for indexing this kind of value. This is a leaky API method specifically needed only for alternate implementations for go-fed. Applications should not use this method. Panics if the index is out of bounds.
func (ActivityStreamsAlsoKnownAsProperty) Len ¶
func (this ActivityStreamsAlsoKnownAsProperty) Len() (length int)
Len returns the number of values that exist for the "alsoKnownAs" property.
func (ActivityStreamsAlsoKnownAsProperty) Less ¶
func (this ActivityStreamsAlsoKnownAsProperty) Less(i, j int) bool
Less computes whether another property is less than this one. Mixing types results in a consistent but arbitrary ordering
func (ActivityStreamsAlsoKnownAsProperty) LessThan ¶
func (this ActivityStreamsAlsoKnownAsProperty) LessThan(o vocab.ActivityStreamsAlsoKnownAsProperty) 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 (ActivityStreamsAlsoKnownAsProperty) Name ¶
func (this ActivityStreamsAlsoKnownAsProperty) Name() string
Name returns the name of this property ("alsoKnownAs") with any alias.
func (*ActivityStreamsAlsoKnownAsProperty) PrependIRI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) PrependIRI(v *url.URL)
PrependIRI prepends an IRI value to the front of a list of the property "alsoKnownAs".
func (*ActivityStreamsAlsoKnownAsProperty) PrependXMLSchemaAnyURI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) PrependXMLSchemaAnyURI(v *url.URL)
PrependXMLSchemaAnyURI prepends a anyURI value to the front of a list of the property "alsoKnownAs". Invalidates all iterators.
func (*ActivityStreamsAlsoKnownAsProperty) Remove ¶
func (this *ActivityStreamsAlsoKnownAsProperty) Remove(idx int)
Remove deletes an element at the specified index from a list of the property "alsoKnownAs", regardless of its type. Panics if the index is out of bounds. Invalidates all iterators.
func (ActivityStreamsAlsoKnownAsProperty) Serialize ¶
func (this ActivityStreamsAlsoKnownAsProperty) 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 (*ActivityStreamsAlsoKnownAsProperty) Set ¶
func (this *ActivityStreamsAlsoKnownAsProperty) Set(idx int, v *url.URL)
Set sets a anyURI value to be at the specified index for the property "alsoKnownAs". Panics if the index is out of bounds. Invalidates all iterators.
func (*ActivityStreamsAlsoKnownAsProperty) SetIRI ¶
func (this *ActivityStreamsAlsoKnownAsProperty) SetIRI(idx int, v *url.URL)
SetIRI sets an IRI value to be at the specified index for the property "alsoKnownAs". Panics if the index is out of bounds.
func (ActivityStreamsAlsoKnownAsProperty) Swap ¶
func (this ActivityStreamsAlsoKnownAsProperty) Swap(i, j int)
Swap swaps the location of values at two indices for the "alsoKnownAs" property.
type ActivityStreamsAlsoKnownAsPropertyIterator ¶
type ActivityStreamsAlsoKnownAsPropertyIterator struct {
// contains filtered or unexported fields
}
ActivityStreamsAlsoKnownAsPropertyIterator is an iterator for a property. It is permitted to be a single nilable value type.
func NewActivityStreamsAlsoKnownAsPropertyIterator ¶
func NewActivityStreamsAlsoKnownAsPropertyIterator() *ActivityStreamsAlsoKnownAsPropertyIterator
NewActivityStreamsAlsoKnownAsPropertyIterator creates a new ActivityStreamsAlsoKnownAs property.
func (ActivityStreamsAlsoKnownAsPropertyIterator) Get ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) Get() *url.URL
Get returns the value of this property. When IsXMLSchemaAnyURI returns false, Get will return any arbitrary value.
func (ActivityStreamsAlsoKnownAsPropertyIterator) GetIRI ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return any arbitrary value.
func (ActivityStreamsAlsoKnownAsPropertyIterator) HasAny ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) HasAny() bool
HasAny returns true if the value or IRI is set.
func (ActivityStreamsAlsoKnownAsPropertyIterator) IsIRI ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) IsIRI() bool
IsIRI returns true if this property is an IRI.
func (ActivityStreamsAlsoKnownAsPropertyIterator) IsXMLSchemaAnyURI ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) IsXMLSchemaAnyURI() bool
IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
func (ActivityStreamsAlsoKnownAsPropertyIterator) JSONLDContext ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) 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 (ActivityStreamsAlsoKnownAsPropertyIterator) KindIndex ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) 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 (ActivityStreamsAlsoKnownAsPropertyIterator) LessThan ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) LessThan(o vocab.ActivityStreamsAlsoKnownAsPropertyIterator) 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 (ActivityStreamsAlsoKnownAsPropertyIterator) Name ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) Name() string
Name returns the name of this property: "ActivityStreamsAlsoKnownAs".
func (ActivityStreamsAlsoKnownAsPropertyIterator) Next ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) Next() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
Next returns the next iterator, or nil if there is no next iterator.
func (ActivityStreamsAlsoKnownAsPropertyIterator) Prev ¶
func (this ActivityStreamsAlsoKnownAsPropertyIterator) Prev() vocab.ActivityStreamsAlsoKnownAsPropertyIterator
Prev returns the previous iterator, or nil if there is no previous iterator.
func (*ActivityStreamsAlsoKnownAsPropertyIterator) Set ¶
func (this *ActivityStreamsAlsoKnownAsPropertyIterator) Set(v *url.URL)
Set sets the value of this property. Calling IsXMLSchemaAnyURI afterwards will return true.
func (*ActivityStreamsAlsoKnownAsPropertyIterator) SetIRI ¶
func (this *ActivityStreamsAlsoKnownAsPropertyIterator) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards will return true.