propertyurl

package
v1.7.0-gts Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 6, 2024 License: BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Overview

Package propertyurl contains the implementation for the url 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

Constants

This section is empty.

Variables

This section is empty.

Functions

func DeserializeUrlProperty

func DeserializeUrlProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsUrlProperty, error)

DeserializeUrlProperty creates a "url" 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 ActivityStreamsUrlProperty

type ActivityStreamsUrlProperty struct {
	// contains filtered or unexported fields
}

ActivityStreamsUrlProperty is the non-functional property "url". It is permitted to have one or more values, and of different value types.

func NewActivityStreamsUrlProperty

func NewActivityStreamsUrlProperty() *ActivityStreamsUrlProperty

NewActivityStreamsUrlProperty creates a new url property.

func (this *ActivityStreamsUrlProperty) AppendActivityStreamsLink(v vocab.ActivityStreamsLink)

AppendActivityStreamsLink appends a Link value to the back of a list of the property "url". Invalidates iterators that are traversing using Prev.

func (*ActivityStreamsUrlProperty) AppendActivityStreamsMention

func (this *ActivityStreamsUrlProperty) AppendActivityStreamsMention(v vocab.ActivityStreamsMention)

AppendActivityStreamsMention appends a Mention value to the back of a list of the property "url". Invalidates iterators that are traversing using Prev.

func (*ActivityStreamsUrlProperty) AppendIRI

func (this *ActivityStreamsUrlProperty) AppendIRI(v *url.URL)

AppendIRI appends an IRI value to the back of a list of the property "url"

func (*ActivityStreamsUrlProperty) AppendTootHashtag

func (this *ActivityStreamsUrlProperty) AppendTootHashtag(v vocab.TootHashtag)

AppendTootHashtag appends a Hashtag value to the back of a list of the property "url". Invalidates iterators that are traversing using Prev.

func (*ActivityStreamsUrlProperty) AppendType

func (this *ActivityStreamsUrlProperty) AppendType(t vocab.Type) error

PrependType prepends an arbitrary type value to the front of a list of the property "url". Invalidates iterators that are traversing using Prev. Returns an error if the type is not a valid one to set for this property.

func (*ActivityStreamsUrlProperty) AppendXMLSchemaAnyURI

func (this *ActivityStreamsUrlProperty) AppendXMLSchemaAnyURI(v *url.URL)

AppendXMLSchemaAnyURI appends a anyURI value to the back of a list of the property "url". Invalidates iterators that are traversing using Prev.

func (ActivityStreamsUrlProperty) At

At returns the property value for the specified index. Panics if the index is out of bounds.

func (ActivityStreamsUrlProperty) Begin

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 (ActivityStreamsUrlProperty) Empty

func (this ActivityStreamsUrlProperty) Empty() bool

Empty returns returns true if there are no elements.

func (ActivityStreamsUrlProperty) End

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 (this *ActivityStreamsUrlProperty) InsertActivityStreamsLink(idx int, v vocab.ActivityStreamsLink)

InsertActivityStreamsLink inserts a Link value at the specified index for a property "url". Existing elements at that index and higher are shifted back once. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) InsertActivityStreamsMention

func (this *ActivityStreamsUrlProperty) InsertActivityStreamsMention(idx int, v vocab.ActivityStreamsMention)

InsertActivityStreamsMention inserts a Mention value at the specified index for a property "url". Existing elements at that index and higher are shifted back once. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) InsertIRI

func (this *ActivityStreamsUrlProperty) InsertIRI(idx int, v *url.URL)

Insert inserts an IRI value at the specified index for a property "url". Existing elements at that index and higher are shifted back once. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) InsertTootHashtag

func (this *ActivityStreamsUrlProperty) InsertTootHashtag(idx int, v vocab.TootHashtag)

InsertTootHashtag inserts a Hashtag value at the specified index for a property "url". Existing elements at that index and higher are shifted back once. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) InsertType

func (this *ActivityStreamsUrlProperty) InsertType(idx int, t vocab.Type) error

PrependType prepends an arbitrary type value to the front of a list of the property "url". Invalidates all iterators. Returns an error if the type is not a valid one to set for this property.

func (*ActivityStreamsUrlProperty) InsertXMLSchemaAnyURI

func (this *ActivityStreamsUrlProperty) InsertXMLSchemaAnyURI(idx int, v *url.URL)

InsertXMLSchemaAnyURI inserts a anyURI value at the specified index for a property "url". Existing elements at that index and higher are shifted back once. Invalidates all iterators.

func (ActivityStreamsUrlProperty) JSONLDContext

func (this ActivityStreamsUrlProperty) 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 (ActivityStreamsUrlProperty) KindIndex

func (this ActivityStreamsUrlProperty) 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 (ActivityStreamsUrlProperty) Len

func (this ActivityStreamsUrlProperty) Len() (length int)

Len returns the number of values that exist for the "url" property.

func (ActivityStreamsUrlProperty) Less

func (this ActivityStreamsUrlProperty) 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 (ActivityStreamsUrlProperty) LessThan

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 (ActivityStreamsUrlProperty) Name

func (this ActivityStreamsUrlProperty) Name() string

Name returns the name of this property ("url") with any alias.

func (this *ActivityStreamsUrlProperty) PrependActivityStreamsLink(v vocab.ActivityStreamsLink)

PrependActivityStreamsLink prepends a Link value to the front of a list of the property "url". Invalidates all iterators.

func (*ActivityStreamsUrlProperty) PrependActivityStreamsMention

func (this *ActivityStreamsUrlProperty) PrependActivityStreamsMention(v vocab.ActivityStreamsMention)

PrependActivityStreamsMention prepends a Mention value to the front of a list of the property "url". Invalidates all iterators.

func (*ActivityStreamsUrlProperty) PrependIRI

func (this *ActivityStreamsUrlProperty) PrependIRI(v *url.URL)

PrependIRI prepends an IRI value to the front of a list of the property "url".

func (*ActivityStreamsUrlProperty) PrependTootHashtag

func (this *ActivityStreamsUrlProperty) PrependTootHashtag(v vocab.TootHashtag)

PrependTootHashtag prepends a Hashtag value to the front of a list of the property "url". Invalidates all iterators.

func (*ActivityStreamsUrlProperty) PrependType

func (this *ActivityStreamsUrlProperty) PrependType(t vocab.Type) error

PrependType prepends an arbitrary type value to the front of a list of the property "url". Invalidates all iterators. Returns an error if the type is not a valid one to set for this property.

func (*ActivityStreamsUrlProperty) PrependXMLSchemaAnyURI

func (this *ActivityStreamsUrlProperty) PrependXMLSchemaAnyURI(v *url.URL)

PrependXMLSchemaAnyURI prepends a anyURI value to the front of a list of the property "url". Invalidates all iterators.

func (*ActivityStreamsUrlProperty) Remove

func (this *ActivityStreamsUrlProperty) Remove(idx int)

Remove deletes an element at the specified index from a list of the property "url", regardless of its type. Panics if the index is out of bounds. Invalidates all iterators.

func (ActivityStreamsUrlProperty) Serialize

func (this ActivityStreamsUrlProperty) 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 (this *ActivityStreamsUrlProperty) SetActivityStreamsLink(idx int, v vocab.ActivityStreamsLink)

SetActivityStreamsLink sets a Link value to be at the specified index for the property "url". Panics if the index is out of bounds. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) SetActivityStreamsMention

func (this *ActivityStreamsUrlProperty) SetActivityStreamsMention(idx int, v vocab.ActivityStreamsMention)

SetActivityStreamsMention sets a Mention value to be at the specified index for the property "url". Panics if the index is out of bounds. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) SetIRI

func (this *ActivityStreamsUrlProperty) SetIRI(idx int, v *url.URL)

SetIRI sets an IRI value to be at the specified index for the property "url". Panics if the index is out of bounds.

func (*ActivityStreamsUrlProperty) SetTootHashtag

func (this *ActivityStreamsUrlProperty) SetTootHashtag(idx int, v vocab.TootHashtag)

SetTootHashtag sets a Hashtag value to be at the specified index for the property "url". Panics if the index is out of bounds. Invalidates all iterators.

func (*ActivityStreamsUrlProperty) SetType

func (this *ActivityStreamsUrlProperty) SetType(idx int, t vocab.Type) error

SetType sets an arbitrary type value to the specified index of the property "url". 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 (*ActivityStreamsUrlProperty) SetXMLSchemaAnyURI

func (this *ActivityStreamsUrlProperty) SetXMLSchemaAnyURI(idx int, v *url.URL)

SetXMLSchemaAnyURI sets a anyURI value to be at the specified index for the property "url". Panics if the index is out of bounds. Invalidates all iterators.

func (ActivityStreamsUrlProperty) Swap

func (this ActivityStreamsUrlProperty) Swap(i, j int)

Swap swaps the location of values at two indices for the "url" property.

type ActivityStreamsUrlPropertyIterator

type ActivityStreamsUrlPropertyIterator struct {
	// contains filtered or unexported fields
}

ActivityStreamsUrlPropertyIterator is an iterator for a property. 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 NewActivityStreamsUrlPropertyIterator

func NewActivityStreamsUrlPropertyIterator() *ActivityStreamsUrlPropertyIterator

NewActivityStreamsUrlPropertyIterator creates a new ActivityStreamsUrl property.

func (this ActivityStreamsUrlPropertyIterator) GetActivityStreamsLink() vocab.ActivityStreamsLink

GetActivityStreamsLink returns the value of this property. When IsActivityStreamsLink returns false, GetActivityStreamsLink will return an arbitrary value.

func (ActivityStreamsUrlPropertyIterator) GetActivityStreamsMention

func (this ActivityStreamsUrlPropertyIterator) GetActivityStreamsMention() vocab.ActivityStreamsMention

GetActivityStreamsMention returns the value of this property. When IsActivityStreamsMention returns false, GetActivityStreamsMention will return an arbitrary value.

func (ActivityStreamsUrlPropertyIterator) GetIRI

GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return an arbitrary value.

func (ActivityStreamsUrlPropertyIterator) GetTootHashtag

GetTootHashtag returns the value of this property. When IsTootHashtag returns false, GetTootHashtag will return an arbitrary value.

func (ActivityStreamsUrlPropertyIterator) GetType

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 (ActivityStreamsUrlPropertyIterator) GetXMLSchemaAnyURI

func (this ActivityStreamsUrlPropertyIterator) GetXMLSchemaAnyURI() *url.URL

GetXMLSchemaAnyURI returns the value of this property. When IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an arbitrary value.

func (ActivityStreamsUrlPropertyIterator) HasAny

HasAny returns true if any of the different values is set.

func (this ActivityStreamsUrlPropertyIterator) IsActivityStreamsLink() bool

IsActivityStreamsLink returns true if this property has a type of "Link". When true, use the GetActivityStreamsLink and SetActivityStreamsLink methods to access and set this property.

func (ActivityStreamsUrlPropertyIterator) IsActivityStreamsMention

func (this ActivityStreamsUrlPropertyIterator) IsActivityStreamsMention() bool

IsActivityStreamsMention returns true if this property has a type of "Mention". When true, use the GetActivityStreamsMention and SetActivityStreamsMention methods to access and set this property.

func (ActivityStreamsUrlPropertyIterator) IsIRI

IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI to access and set this property

func (ActivityStreamsUrlPropertyIterator) IsTootHashtag

func (this ActivityStreamsUrlPropertyIterator) IsTootHashtag() bool

IsTootHashtag returns true if this property has a type of "Hashtag". When true, use the GetTootHashtag and SetTootHashtag methods to access and set this property.

func (ActivityStreamsUrlPropertyIterator) IsXMLSchemaAnyURI

func (this ActivityStreamsUrlPropertyIterator) 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 (ActivityStreamsUrlPropertyIterator) JSONLDContext

func (this ActivityStreamsUrlPropertyIterator) 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 (ActivityStreamsUrlPropertyIterator) KindIndex

func (this ActivityStreamsUrlPropertyIterator) 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 (ActivityStreamsUrlPropertyIterator) LessThan

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 (ActivityStreamsUrlPropertyIterator) Name

Name returns the name of this property: "ActivityStreamsUrl".

func (ActivityStreamsUrlPropertyIterator) Next

Next returns the next iterator, or nil if there is no next iterator.

func (ActivityStreamsUrlPropertyIterator) Prev

Prev returns the previous iterator, or nil if there is no previous iterator.

func (this *ActivityStreamsUrlPropertyIterator) SetActivityStreamsLink(v vocab.ActivityStreamsLink)

SetActivityStreamsLink sets the value of this property. Calling IsActivityStreamsLink afterwards returns true.

func (*ActivityStreamsUrlPropertyIterator) SetActivityStreamsMention

func (this *ActivityStreamsUrlPropertyIterator) SetActivityStreamsMention(v vocab.ActivityStreamsMention)

SetActivityStreamsMention sets the value of this property. Calling IsActivityStreamsMention afterwards returns true.

func (*ActivityStreamsUrlPropertyIterator) SetIRI

func (this *ActivityStreamsUrlPropertyIterator) SetIRI(v *url.URL)

SetIRI sets the value of this property. Calling IsIRI afterwards returns true.

func (*ActivityStreamsUrlPropertyIterator) SetTootHashtag

func (this *ActivityStreamsUrlPropertyIterator) SetTootHashtag(v vocab.TootHashtag)

SetTootHashtag sets the value of this property. Calling IsTootHashtag afterwards returns true.

func (*ActivityStreamsUrlPropertyIterator) SetType

SetType attempts to set the property for the arbitrary type. Returns an error if it is not a valid type to set on this property.

func (*ActivityStreamsUrlPropertyIterator) SetXMLSchemaAnyURI

func (this *ActivityStreamsUrlPropertyIterator) SetXMLSchemaAnyURI(v *url.URL)

SetXMLSchemaAnyURI sets the value of this property. Calling IsXMLSchemaAnyURI afterwards returns true.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL