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