Documentation ¶
Overview ¶
Package propertycanannounce contains the implementation for the canAnnounce 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 DeserializeCanAnnounceProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.GoToSocialCanAnnounceProperty, error)
- func SetManager(m privateManager)
- type GoToSocialCanAnnounceProperty
- func (this *GoToSocialCanAnnounceProperty) AppendGoToSocialCanAnnounce(v vocab.GoToSocialCanAnnounce)
- func (this *GoToSocialCanAnnounceProperty) AppendIRI(v *url.URL)
- func (this *GoToSocialCanAnnounceProperty) AppendType(t vocab.Type) error
- func (this GoToSocialCanAnnounceProperty) At(index int) vocab.GoToSocialCanAnnouncePropertyIterator
- func (this GoToSocialCanAnnounceProperty) Begin() vocab.GoToSocialCanAnnouncePropertyIterator
- func (this GoToSocialCanAnnounceProperty) Empty() bool
- func (this GoToSocialCanAnnounceProperty) End() vocab.GoToSocialCanAnnouncePropertyIterator
- func (this *GoToSocialCanAnnounceProperty) InsertGoToSocialCanAnnounce(idx int, v vocab.GoToSocialCanAnnounce)
- func (this *GoToSocialCanAnnounceProperty) InsertIRI(idx int, v *url.URL)
- func (this *GoToSocialCanAnnounceProperty) InsertType(idx int, t vocab.Type) error
- func (this GoToSocialCanAnnounceProperty) JSONLDContext() map[string]string
- func (this GoToSocialCanAnnounceProperty) KindIndex(idx int) int
- func (this GoToSocialCanAnnounceProperty) Len() (length int)
- func (this GoToSocialCanAnnounceProperty) Less(i, j int) bool
- func (this GoToSocialCanAnnounceProperty) LessThan(o vocab.GoToSocialCanAnnounceProperty) bool
- func (this GoToSocialCanAnnounceProperty) Name() string
- func (this *GoToSocialCanAnnounceProperty) PrependGoToSocialCanAnnounce(v vocab.GoToSocialCanAnnounce)
- func (this *GoToSocialCanAnnounceProperty) PrependIRI(v *url.URL)
- func (this *GoToSocialCanAnnounceProperty) PrependType(t vocab.Type) error
- func (this *GoToSocialCanAnnounceProperty) Remove(idx int)
- func (this GoToSocialCanAnnounceProperty) Serialize() (interface{}, error)
- func (this *GoToSocialCanAnnounceProperty) Set(idx int, v vocab.GoToSocialCanAnnounce)
- func (this *GoToSocialCanAnnounceProperty) SetIRI(idx int, v *url.URL)
- func (this *GoToSocialCanAnnounceProperty) SetType(idx int, t vocab.Type) error
- func (this GoToSocialCanAnnounceProperty) Swap(i, j int)
- type GoToSocialCanAnnouncePropertyIterator
- func (this GoToSocialCanAnnouncePropertyIterator) Get() vocab.GoToSocialCanAnnounce
- func (this GoToSocialCanAnnouncePropertyIterator) GetIRI() *url.URL
- func (this GoToSocialCanAnnouncePropertyIterator) GetType() vocab.Type
- func (this GoToSocialCanAnnouncePropertyIterator) HasAny() bool
- func (this GoToSocialCanAnnouncePropertyIterator) IsGoToSocialCanAnnounce() bool
- func (this GoToSocialCanAnnouncePropertyIterator) IsIRI() bool
- func (this GoToSocialCanAnnouncePropertyIterator) JSONLDContext() map[string]string
- func (this GoToSocialCanAnnouncePropertyIterator) KindIndex() int
- func (this GoToSocialCanAnnouncePropertyIterator) LessThan(o vocab.GoToSocialCanAnnouncePropertyIterator) bool
- func (this GoToSocialCanAnnouncePropertyIterator) Name() string
- func (this GoToSocialCanAnnouncePropertyIterator) Next() vocab.GoToSocialCanAnnouncePropertyIterator
- func (this GoToSocialCanAnnouncePropertyIterator) Prev() vocab.GoToSocialCanAnnouncePropertyIterator
- func (this *GoToSocialCanAnnouncePropertyIterator) Set(v vocab.GoToSocialCanAnnounce)
- func (this *GoToSocialCanAnnouncePropertyIterator) SetIRI(v *url.URL)
- func (this *GoToSocialCanAnnouncePropertyIterator) SetType(t vocab.Type) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeserializeCanAnnounceProperty ¶
func DeserializeCanAnnounceProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.GoToSocialCanAnnounceProperty, error)
DeserializeCanAnnounceProperty creates a "canAnnounce" 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 GoToSocialCanAnnounceProperty ¶
type GoToSocialCanAnnounceProperty struct {
// contains filtered or unexported fields
}
GoToSocialCanAnnounceProperty is the non-functional property "canAnnounce". It is permitted to have one or more values, and of different value types.
func NewGoToSocialCanAnnounceProperty ¶
func NewGoToSocialCanAnnounceProperty() *GoToSocialCanAnnounceProperty
NewGoToSocialCanAnnounceProperty creates a new canAnnounce property.
func (*GoToSocialCanAnnounceProperty) AppendGoToSocialCanAnnounce ¶
func (this *GoToSocialCanAnnounceProperty) AppendGoToSocialCanAnnounce(v vocab.GoToSocialCanAnnounce)
AppendGoToSocialCanAnnounce appends a CanAnnounce value to the back of a list of the property "canAnnounce". Invalidates iterators that are traversing using Prev.
func (*GoToSocialCanAnnounceProperty) AppendIRI ¶
func (this *GoToSocialCanAnnounceProperty) AppendIRI(v *url.URL)
AppendIRI appends an IRI value to the back of a list of the property "canAnnounce"
func (*GoToSocialCanAnnounceProperty) AppendType ¶
func (this *GoToSocialCanAnnounceProperty) AppendType(t vocab.Type) error
PrependType prepends an arbitrary type value to the front of a list of the property "canAnnounce". Invalidates iterators that are traversing using Prev. Returns an error if the type is not a valid one to set for this property.
func (GoToSocialCanAnnounceProperty) At ¶
func (this GoToSocialCanAnnounceProperty) At(index int) vocab.GoToSocialCanAnnouncePropertyIterator
At returns the property value for the specified index. Panics if the index is out of bounds.
func (GoToSocialCanAnnounceProperty) Begin ¶
func (this GoToSocialCanAnnounceProperty) Begin() vocab.GoToSocialCanAnnouncePropertyIterator
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 (GoToSocialCanAnnounceProperty) Empty ¶
func (this GoToSocialCanAnnounceProperty) Empty() bool
Empty returns returns true if there are no elements.
func (GoToSocialCanAnnounceProperty) End ¶
func (this GoToSocialCanAnnounceProperty) End() vocab.GoToSocialCanAnnouncePropertyIterator
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 (*GoToSocialCanAnnounceProperty) InsertGoToSocialCanAnnounce ¶
func (this *GoToSocialCanAnnounceProperty) InsertGoToSocialCanAnnounce(idx int, v vocab.GoToSocialCanAnnounce)
InsertGoToSocialCanAnnounce inserts a CanAnnounce value at the specified index for a property "canAnnounce". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*GoToSocialCanAnnounceProperty) InsertIRI ¶
func (this *GoToSocialCanAnnounceProperty) InsertIRI(idx int, v *url.URL)
Insert inserts an IRI value at the specified index for a property "canAnnounce". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*GoToSocialCanAnnounceProperty) InsertType ¶
func (this *GoToSocialCanAnnounceProperty) InsertType(idx int, t vocab.Type) error
PrependType prepends an arbitrary type value to the front of a list of the property "canAnnounce". Invalidates all iterators. Returns an error if the type is not a valid one to set for this property.
func (GoToSocialCanAnnounceProperty) JSONLDContext ¶
func (this GoToSocialCanAnnounceProperty) 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 (GoToSocialCanAnnounceProperty) KindIndex ¶
func (this GoToSocialCanAnnounceProperty) 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 (GoToSocialCanAnnounceProperty) Len ¶
func (this GoToSocialCanAnnounceProperty) Len() (length int)
Len returns the number of values that exist for the "canAnnounce" property.
func (GoToSocialCanAnnounceProperty) Less ¶
func (this GoToSocialCanAnnounceProperty) 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 (GoToSocialCanAnnounceProperty) LessThan ¶
func (this GoToSocialCanAnnounceProperty) LessThan(o vocab.GoToSocialCanAnnounceProperty) 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 (GoToSocialCanAnnounceProperty) Name ¶
func (this GoToSocialCanAnnounceProperty) Name() string
Name returns the name of this property ("canAnnounce") with any alias.
func (*GoToSocialCanAnnounceProperty) PrependGoToSocialCanAnnounce ¶
func (this *GoToSocialCanAnnounceProperty) PrependGoToSocialCanAnnounce(v vocab.GoToSocialCanAnnounce)
PrependGoToSocialCanAnnounce prepends a CanAnnounce value to the front of a list of the property "canAnnounce". Invalidates all iterators.
func (*GoToSocialCanAnnounceProperty) PrependIRI ¶
func (this *GoToSocialCanAnnounceProperty) PrependIRI(v *url.URL)
PrependIRI prepends an IRI value to the front of a list of the property "canAnnounce".
func (*GoToSocialCanAnnounceProperty) PrependType ¶
func (this *GoToSocialCanAnnounceProperty) PrependType(t vocab.Type) error
PrependType prepends an arbitrary type value to the front of a list of the property "canAnnounce". Invalidates all iterators. Returns an error if the type is not a valid one to set for this property.
func (*GoToSocialCanAnnounceProperty) Remove ¶
func (this *GoToSocialCanAnnounceProperty) Remove(idx int)
Remove deletes an element at the specified index from a list of the property "canAnnounce", regardless of its type. Panics if the index is out of bounds. Invalidates all iterators.
func (GoToSocialCanAnnounceProperty) Serialize ¶
func (this GoToSocialCanAnnounceProperty) 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 (*GoToSocialCanAnnounceProperty) Set ¶
func (this *GoToSocialCanAnnounceProperty) Set(idx int, v vocab.GoToSocialCanAnnounce)
Set sets a CanAnnounce value to be at the specified index for the property "canAnnounce". Panics if the index is out of bounds. Invalidates all iterators.
func (*GoToSocialCanAnnounceProperty) SetIRI ¶
func (this *GoToSocialCanAnnounceProperty) SetIRI(idx int, v *url.URL)
SetIRI sets an IRI value to be at the specified index for the property "canAnnounce". Panics if the index is out of bounds.
func (*GoToSocialCanAnnounceProperty) SetType ¶
func (this *GoToSocialCanAnnounceProperty) SetType(idx int, t vocab.Type) error
SetType sets an arbitrary type value to the specified index of the property "canAnnounce". Invalidates all iterators. Returns an error if the type is not a valid one to set for this property. Panics if the index is out of bounds.
func (GoToSocialCanAnnounceProperty) Swap ¶
func (this GoToSocialCanAnnounceProperty) Swap(i, j int)
Swap swaps the location of values at two indices for the "canAnnounce" property.
type GoToSocialCanAnnouncePropertyIterator ¶
type GoToSocialCanAnnouncePropertyIterator struct {
// contains filtered or unexported fields
}
GoToSocialCanAnnouncePropertyIterator is an iterator for a property. It is permitted to be a single nilable value type.
func NewGoToSocialCanAnnouncePropertyIterator ¶
func NewGoToSocialCanAnnouncePropertyIterator() *GoToSocialCanAnnouncePropertyIterator
NewGoToSocialCanAnnouncePropertyIterator creates a new GoToSocialCanAnnounce property.
func (GoToSocialCanAnnouncePropertyIterator) Get ¶
func (this GoToSocialCanAnnouncePropertyIterator) Get() vocab.GoToSocialCanAnnounce
Get returns the value of this property. When IsGoToSocialCanAnnounce returns false, Get will return any arbitrary value.
func (GoToSocialCanAnnouncePropertyIterator) GetIRI ¶
func (this GoToSocialCanAnnouncePropertyIterator) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return any arbitrary value.
func (GoToSocialCanAnnouncePropertyIterator) GetType ¶
func (this GoToSocialCanAnnouncePropertyIterator) GetType() vocab.Type
GetType returns the value in this property as a Type. Returns nil if the value is not an ActivityStreams type, such as an IRI or another value.
func (GoToSocialCanAnnouncePropertyIterator) HasAny ¶
func (this GoToSocialCanAnnouncePropertyIterator) HasAny() bool
HasAny returns true if the value or IRI is set.
func (GoToSocialCanAnnouncePropertyIterator) IsGoToSocialCanAnnounce ¶
func (this GoToSocialCanAnnouncePropertyIterator) IsGoToSocialCanAnnounce() bool
IsGoToSocialCanAnnounce returns true if this property is set and not an IRI.
func (GoToSocialCanAnnouncePropertyIterator) IsIRI ¶
func (this GoToSocialCanAnnouncePropertyIterator) IsIRI() bool
IsIRI returns true if this property is an IRI.
func (GoToSocialCanAnnouncePropertyIterator) JSONLDContext ¶
func (this GoToSocialCanAnnouncePropertyIterator) 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 (GoToSocialCanAnnouncePropertyIterator) KindIndex ¶
func (this GoToSocialCanAnnouncePropertyIterator) 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 (GoToSocialCanAnnouncePropertyIterator) LessThan ¶
func (this GoToSocialCanAnnouncePropertyIterator) LessThan(o vocab.GoToSocialCanAnnouncePropertyIterator) 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 (GoToSocialCanAnnouncePropertyIterator) Name ¶
func (this GoToSocialCanAnnouncePropertyIterator) Name() string
Name returns the name of this property: "GoToSocialCanAnnounce".
func (GoToSocialCanAnnouncePropertyIterator) Next ¶
func (this GoToSocialCanAnnouncePropertyIterator) Next() vocab.GoToSocialCanAnnouncePropertyIterator
Next returns the next iterator, or nil if there is no next iterator.
func (GoToSocialCanAnnouncePropertyIterator) Prev ¶
func (this GoToSocialCanAnnouncePropertyIterator) Prev() vocab.GoToSocialCanAnnouncePropertyIterator
Prev returns the previous iterator, or nil if there is no previous iterator.
func (*GoToSocialCanAnnouncePropertyIterator) Set ¶
func (this *GoToSocialCanAnnouncePropertyIterator) Set(v vocab.GoToSocialCanAnnounce)
Set sets the value of this property. Calling IsGoToSocialCanAnnounce afterwards will return true.
func (*GoToSocialCanAnnouncePropertyIterator) SetIRI ¶
func (this *GoToSocialCanAnnouncePropertyIterator) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards will return true.