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