Documentation ¶
Overview ¶
Package propertyname contains the implementation for the name 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 DeserializeNameProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsNameProperty, error)
- func SetManager(m privateManager)
- type ActivityStreamsNameProperty
- func (this *ActivityStreamsNameProperty) AppendIRI(v *url.URL)
- func (this *ActivityStreamsNameProperty) AppendRDFLangString(v map[string]string)
- func (this *ActivityStreamsNameProperty) AppendXMLSchemaString(v string)
- func (this ActivityStreamsNameProperty) At(index int) vocab.ActivityStreamsNamePropertyIterator
- func (this ActivityStreamsNameProperty) Begin() vocab.ActivityStreamsNamePropertyIterator
- func (this ActivityStreamsNameProperty) Empty() bool
- func (this ActivityStreamsNameProperty) End() vocab.ActivityStreamsNamePropertyIterator
- func (this *ActivityStreamsNameProperty) InsertIRI(idx int, v *url.URL)
- func (this *ActivityStreamsNameProperty) InsertRDFLangString(idx int, v map[string]string)
- func (this *ActivityStreamsNameProperty) InsertXMLSchemaString(idx int, v string)
- func (this ActivityStreamsNameProperty) JSONLDContext() map[string]string
- func (this ActivityStreamsNameProperty) KindIndex(idx int) int
- func (this ActivityStreamsNameProperty) Len() (length int)
- func (this ActivityStreamsNameProperty) Less(i, j int) bool
- func (this ActivityStreamsNameProperty) LessThan(o vocab.ActivityStreamsNameProperty) bool
- func (this ActivityStreamsNameProperty) Name() string
- func (this *ActivityStreamsNameProperty) PrependIRI(v *url.URL)
- func (this *ActivityStreamsNameProperty) PrependRDFLangString(v map[string]string)
- func (this *ActivityStreamsNameProperty) PrependXMLSchemaString(v string)
- func (this *ActivityStreamsNameProperty) Remove(idx int)
- func (this ActivityStreamsNameProperty) Serialize() (interface{}, error)
- func (this *ActivityStreamsNameProperty) SetIRI(idx int, v *url.URL)
- func (this *ActivityStreamsNameProperty) SetRDFLangString(idx int, v map[string]string)
- func (this *ActivityStreamsNameProperty) SetXMLSchemaString(idx int, v string)
- func (this ActivityStreamsNameProperty) Swap(i, j int)
- type ActivityStreamsNamePropertyIterator
- func (this ActivityStreamsNamePropertyIterator) GetIRI() *url.URL
- func (this ActivityStreamsNamePropertyIterator) GetLanguage(bcp47 string) string
- func (this ActivityStreamsNamePropertyIterator) GetRDFLangString() map[string]string
- func (this ActivityStreamsNamePropertyIterator) GetXMLSchemaString() string
- func (this ActivityStreamsNamePropertyIterator) HasAny() bool
- func (this ActivityStreamsNamePropertyIterator) HasLanguage(bcp47 string) bool
- func (this ActivityStreamsNamePropertyIterator) IsIRI() bool
- func (this ActivityStreamsNamePropertyIterator) IsRDFLangString() bool
- func (this ActivityStreamsNamePropertyIterator) IsXMLSchemaString() bool
- func (this ActivityStreamsNamePropertyIterator) JSONLDContext() map[string]string
- func (this ActivityStreamsNamePropertyIterator) KindIndex() int
- func (this ActivityStreamsNamePropertyIterator) LessThan(o vocab.ActivityStreamsNamePropertyIterator) bool
- func (this ActivityStreamsNamePropertyIterator) Name() string
- func (this ActivityStreamsNamePropertyIterator) Next() vocab.ActivityStreamsNamePropertyIterator
- func (this ActivityStreamsNamePropertyIterator) Prev() vocab.ActivityStreamsNamePropertyIterator
- func (this *ActivityStreamsNamePropertyIterator) SetIRI(v *url.URL)
- func (this *ActivityStreamsNamePropertyIterator) SetLanguage(bcp47, value string)
- func (this *ActivityStreamsNamePropertyIterator) SetRDFLangString(v map[string]string)
- func (this *ActivityStreamsNamePropertyIterator) SetXMLSchemaString(v string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeserializeNameProperty ¶
func DeserializeNameProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsNameProperty, error)
DeserializeNameProperty creates a "name" 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 ActivityStreamsNameProperty ¶
type ActivityStreamsNameProperty struct {
// contains filtered or unexported fields
}
ActivityStreamsNameProperty is the non-functional property "name". It is permitted to have one or more values, and of different value types.
func NewActivityStreamsNameProperty ¶
func NewActivityStreamsNameProperty() *ActivityStreamsNameProperty
NewActivityStreamsNameProperty creates a new name property.
func (*ActivityStreamsNameProperty) AppendIRI ¶
func (this *ActivityStreamsNameProperty) AppendIRI(v *url.URL)
AppendIRI appends an IRI value to the back of a list of the property "name"
func (*ActivityStreamsNameProperty) AppendRDFLangString ¶
func (this *ActivityStreamsNameProperty) AppendRDFLangString(v map[string]string)
AppendRDFLangString appends a langString value to the back of a list of the property "name". Invalidates iterators that are traversing using Prev.
func (*ActivityStreamsNameProperty) AppendXMLSchemaString ¶
func (this *ActivityStreamsNameProperty) AppendXMLSchemaString(v string)
AppendXMLSchemaString appends a string value to the back of a list of the property "name". Invalidates iterators that are traversing using Prev.
func (ActivityStreamsNameProperty) At ¶
func (this ActivityStreamsNameProperty) At(index int) vocab.ActivityStreamsNamePropertyIterator
At returns the property value for the specified index. Panics if the index is out of bounds.
func (ActivityStreamsNameProperty) Begin ¶
func (this ActivityStreamsNameProperty) Begin() vocab.ActivityStreamsNamePropertyIterator
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 (ActivityStreamsNameProperty) Empty ¶
func (this ActivityStreamsNameProperty) Empty() bool
Empty returns returns true if there are no elements.
func (ActivityStreamsNameProperty) End ¶
func (this ActivityStreamsNameProperty) End() vocab.ActivityStreamsNamePropertyIterator
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 (*ActivityStreamsNameProperty) InsertIRI ¶
func (this *ActivityStreamsNameProperty) InsertIRI(idx int, v *url.URL)
Insert inserts an IRI value at the specified index for a property "name". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsNameProperty) InsertRDFLangString ¶
func (this *ActivityStreamsNameProperty) InsertRDFLangString(idx int, v map[string]string)
InsertRDFLangString inserts a langString value at the specified index for a property "name". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsNameProperty) InsertXMLSchemaString ¶
func (this *ActivityStreamsNameProperty) InsertXMLSchemaString(idx int, v string)
InsertXMLSchemaString inserts a string value at the specified index for a property "name". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (ActivityStreamsNameProperty) JSONLDContext ¶
func (this ActivityStreamsNameProperty) 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 (ActivityStreamsNameProperty) KindIndex ¶
func (this ActivityStreamsNameProperty) 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 (ActivityStreamsNameProperty) Len ¶
func (this ActivityStreamsNameProperty) Len() (length int)
Len returns the number of values that exist for the "name" property.
func (ActivityStreamsNameProperty) Less ¶
func (this ActivityStreamsNameProperty) 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 (ActivityStreamsNameProperty) LessThan ¶
func (this ActivityStreamsNameProperty) LessThan(o vocab.ActivityStreamsNameProperty) 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 (ActivityStreamsNameProperty) Name ¶
func (this ActivityStreamsNameProperty) Name() string
Name returns the name of this property ("name") with any alias.
func (*ActivityStreamsNameProperty) PrependIRI ¶
func (this *ActivityStreamsNameProperty) PrependIRI(v *url.URL)
PrependIRI prepends an IRI value to the front of a list of the property "name".
func (*ActivityStreamsNameProperty) PrependRDFLangString ¶
func (this *ActivityStreamsNameProperty) PrependRDFLangString(v map[string]string)
PrependRDFLangString prepends a langString value to the front of a list of the property "name". Invalidates all iterators.
func (*ActivityStreamsNameProperty) PrependXMLSchemaString ¶
func (this *ActivityStreamsNameProperty) PrependXMLSchemaString(v string)
PrependXMLSchemaString prepends a string value to the front of a list of the property "name". Invalidates all iterators.
func (*ActivityStreamsNameProperty) Remove ¶
func (this *ActivityStreamsNameProperty) Remove(idx int)
Remove deletes an element at the specified index from a list of the property "name", regardless of its type. Panics if the index is out of bounds. Invalidates all iterators.
func (ActivityStreamsNameProperty) Serialize ¶
func (this ActivityStreamsNameProperty) 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 (*ActivityStreamsNameProperty) SetIRI ¶
func (this *ActivityStreamsNameProperty) SetIRI(idx int, v *url.URL)
SetIRI sets an IRI value to be at the specified index for the property "name". Panics if the index is out of bounds.
func (*ActivityStreamsNameProperty) SetRDFLangString ¶
func (this *ActivityStreamsNameProperty) SetRDFLangString(idx int, v map[string]string)
SetRDFLangString sets a langString value to be at the specified index for the property "name". Panics if the index is out of bounds. Invalidates all iterators.
func (*ActivityStreamsNameProperty) SetXMLSchemaString ¶
func (this *ActivityStreamsNameProperty) SetXMLSchemaString(idx int, v string)
SetXMLSchemaString sets a string value to be at the specified index for the property "name". Panics if the index is out of bounds. Invalidates all iterators.
func (ActivityStreamsNameProperty) Swap ¶
func (this ActivityStreamsNameProperty) Swap(i, j int)
Swap swaps the location of values at two indices for the "name" property.
type ActivityStreamsNamePropertyIterator ¶
type ActivityStreamsNamePropertyIterator struct {
// contains filtered or unexported fields
}
ActivityStreamsNamePropertyIterator 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 NewActivityStreamsNamePropertyIterator ¶
func NewActivityStreamsNamePropertyIterator() *ActivityStreamsNamePropertyIterator
NewActivityStreamsNamePropertyIterator creates a new ActivityStreamsName property.
func (ActivityStreamsNamePropertyIterator) GetIRI ¶
func (this ActivityStreamsNamePropertyIterator) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return an arbitrary value.
func (ActivityStreamsNamePropertyIterator) GetLanguage ¶
func (this ActivityStreamsNamePropertyIterator) GetLanguage(bcp47 string) string
GetLanguage returns the value for the specified BCP47 language code, or an empty string if it is either not a language map or no value is present.
func (ActivityStreamsNamePropertyIterator) GetRDFLangString ¶
func (this ActivityStreamsNamePropertyIterator) GetRDFLangString() map[string]string
GetRDFLangString returns the value of this property. When IsRDFLangString returns false, GetRDFLangString will return an arbitrary value.
func (ActivityStreamsNamePropertyIterator) GetXMLSchemaString ¶
func (this ActivityStreamsNamePropertyIterator) GetXMLSchemaString() string
GetXMLSchemaString returns the value of this property. When IsXMLSchemaString returns false, GetXMLSchemaString will return an arbitrary value.
func (ActivityStreamsNamePropertyIterator) HasAny ¶
func (this ActivityStreamsNamePropertyIterator) HasAny() bool
HasAny returns true if any of the values are set, except for the natural language map. When true, the specific has, getter, and setter methods may be used to determine what kind of value there is to access and set this property. To determine if the property was set as a natural language map, use the IsRDFLangString method instead.
func (ActivityStreamsNamePropertyIterator) HasLanguage ¶
func (this ActivityStreamsNamePropertyIterator) HasLanguage(bcp47 string) bool
HasLanguage returns true if the natural language map has an entry for the specified BCP47 language code.
func (ActivityStreamsNamePropertyIterator) IsIRI ¶
func (this ActivityStreamsNamePropertyIterator) IsIRI() bool
IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI to access and set this property
func (ActivityStreamsNamePropertyIterator) IsRDFLangString ¶
func (this ActivityStreamsNamePropertyIterator) IsRDFLangString() bool
IsRDFLangString returns true if this property has a type of "langString". When true, use the GetRDFLangString and SetRDFLangString methods to access and set this property.. To determine if the property was set as a natural language map, use the IsRDFLangString method instead.
func (ActivityStreamsNamePropertyIterator) IsXMLSchemaString ¶
func (this ActivityStreamsNamePropertyIterator) IsXMLSchemaString() bool
IsXMLSchemaString returns true if this property has a type of "string". When true, use the GetXMLSchemaString and SetXMLSchemaString methods to access and set this property.. To determine if the property was set as a natural language map, use the IsRDFLangString method instead.
func (ActivityStreamsNamePropertyIterator) JSONLDContext ¶
func (this ActivityStreamsNamePropertyIterator) 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 (ActivityStreamsNamePropertyIterator) KindIndex ¶
func (this ActivityStreamsNamePropertyIterator) 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 (ActivityStreamsNamePropertyIterator) LessThan ¶
func (this ActivityStreamsNamePropertyIterator) LessThan(o vocab.ActivityStreamsNamePropertyIterator) 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 (ActivityStreamsNamePropertyIterator) Name ¶
func (this ActivityStreamsNamePropertyIterator) Name() string
Name returns the name of this property: "ActivityStreamsName".
func (ActivityStreamsNamePropertyIterator) Next ¶
func (this ActivityStreamsNamePropertyIterator) Next() vocab.ActivityStreamsNamePropertyIterator
Next returns the next iterator, or nil if there is no next iterator.
func (ActivityStreamsNamePropertyIterator) Prev ¶
func (this ActivityStreamsNamePropertyIterator) Prev() vocab.ActivityStreamsNamePropertyIterator
Prev returns the previous iterator, or nil if there is no previous iterator.
func (*ActivityStreamsNamePropertyIterator) SetIRI ¶
func (this *ActivityStreamsNamePropertyIterator) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
func (*ActivityStreamsNamePropertyIterator) SetLanguage ¶
func (this *ActivityStreamsNamePropertyIterator) SetLanguage(bcp47, value string)
SetLanguage sets the value for the specified BCP47 language code.
func (*ActivityStreamsNamePropertyIterator) SetRDFLangString ¶
func (this *ActivityStreamsNamePropertyIterator) SetRDFLangString(v map[string]string)
SetRDFLangString sets the value of this property and clears the natural language map. Calling IsRDFLangString afterwards will return true. Calling IsRDFLangString afterwards returns false.
func (*ActivityStreamsNamePropertyIterator) SetXMLSchemaString ¶
func (this *ActivityStreamsNamePropertyIterator) SetXMLSchemaString(v string)
SetXMLSchemaString sets the value of this property and clears the natural language map. Calling IsXMLSchemaString afterwards will return true. Calling IsRDFLangString afterwards returns false.