Documentation
¶
Overview ¶
Package propertytype contains the implementation for the type 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 DeserializeTypeProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.JSONLDTypeProperty, error)
- func SetManager(m privateManager)
- type JSONLDTypeProperty
- func (this *JSONLDTypeProperty) AppendIRI(v *url.URL)
- func (this *JSONLDTypeProperty) AppendXMLSchemaAnyURI(v *url.URL)
- func (this *JSONLDTypeProperty) AppendXMLSchemaString(v string)
- func (this JSONLDTypeProperty) At(index int) vocab.JSONLDTypePropertyIterator
- func (this JSONLDTypeProperty) Begin() vocab.JSONLDTypePropertyIterator
- func (this JSONLDTypeProperty) Empty() bool
- func (this JSONLDTypeProperty) End() vocab.JSONLDTypePropertyIterator
- func (this *JSONLDTypeProperty) InsertIRI(idx int, v *url.URL)
- func (this *JSONLDTypeProperty) InsertXMLSchemaAnyURI(idx int, v *url.URL)
- func (this *JSONLDTypeProperty) InsertXMLSchemaString(idx int, v string)
- func (this JSONLDTypeProperty) JSONLDContext() map[string]string
- func (this JSONLDTypeProperty) KindIndex(idx int) int
- func (this JSONLDTypeProperty) Len() (length int)
- func (this JSONLDTypeProperty) Less(i, j int) bool
- func (this JSONLDTypeProperty) LessThan(o vocab.JSONLDTypeProperty) bool
- func (this JSONLDTypeProperty) Name() string
- func (this *JSONLDTypeProperty) PrependIRI(v *url.URL)
- func (this *JSONLDTypeProperty) PrependXMLSchemaAnyURI(v *url.URL)
- func (this *JSONLDTypeProperty) PrependXMLSchemaString(v string)
- func (this *JSONLDTypeProperty) Remove(idx int)
- func (this JSONLDTypeProperty) Serialize() (interface{}, error)
- func (this *JSONLDTypeProperty) SetIRI(idx int, v *url.URL)
- func (this *JSONLDTypeProperty) SetXMLSchemaAnyURI(idx int, v *url.URL)
- func (this *JSONLDTypeProperty) SetXMLSchemaString(idx int, v string)
- func (this JSONLDTypeProperty) Swap(i, j int)
- type JSONLDTypePropertyIterator
- func (this JSONLDTypePropertyIterator) GetIRI() *url.URL
- func (this JSONLDTypePropertyIterator) GetXMLSchemaAnyURI() *url.URL
- func (this JSONLDTypePropertyIterator) GetXMLSchemaString() string
- func (this JSONLDTypePropertyIterator) HasAny() bool
- func (this JSONLDTypePropertyIterator) IsIRI() bool
- func (this JSONLDTypePropertyIterator) IsXMLSchemaAnyURI() bool
- func (this JSONLDTypePropertyIterator) IsXMLSchemaString() bool
- func (this JSONLDTypePropertyIterator) JSONLDContext() map[string]string
- func (this JSONLDTypePropertyIterator) KindIndex() int
- func (this JSONLDTypePropertyIterator) LessThan(o vocab.JSONLDTypePropertyIterator) bool
- func (this JSONLDTypePropertyIterator) Name() string
- func (this JSONLDTypePropertyIterator) Next() vocab.JSONLDTypePropertyIterator
- func (this JSONLDTypePropertyIterator) Prev() vocab.JSONLDTypePropertyIterator
- func (this *JSONLDTypePropertyIterator) SetIRI(v *url.URL)
- func (this *JSONLDTypePropertyIterator) SetXMLSchemaAnyURI(v *url.URL)
- func (this *JSONLDTypePropertyIterator) SetXMLSchemaString(v string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeserializeTypeProperty ¶
func DeserializeTypeProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.JSONLDTypeProperty, error)
DeserializeTypeProperty creates a "type" 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 JSONLDTypeProperty ¶
type JSONLDTypeProperty struct {
// contains filtered or unexported fields
}
JSONLDTypeProperty is the non-functional property "type". It is permitted to have one or more values, and of different value types.
func NewJSONLDTypeProperty ¶
func NewJSONLDTypeProperty() *JSONLDTypeProperty
NewJSONLDTypeProperty creates a new type property.
func (*JSONLDTypeProperty) AppendIRI ¶
func (this *JSONLDTypeProperty) AppendIRI(v *url.URL)
AppendIRI appends an IRI value to the back of a list of the property "type"
func (*JSONLDTypeProperty) AppendXMLSchemaAnyURI ¶
func (this *JSONLDTypeProperty) AppendXMLSchemaAnyURI(v *url.URL)
AppendXMLSchemaAnyURI appends a anyURI value to the back of a list of the property "type". Invalidates iterators that are traversing using Prev.
func (*JSONLDTypeProperty) AppendXMLSchemaString ¶
func (this *JSONLDTypeProperty) AppendXMLSchemaString(v string)
AppendXMLSchemaString appends a string value to the back of a list of the property "type". Invalidates iterators that are traversing using Prev.
func (JSONLDTypeProperty) At ¶
func (this JSONLDTypeProperty) At(index int) vocab.JSONLDTypePropertyIterator
At returns the property value for the specified index. Panics if the index is out of bounds.
func (JSONLDTypeProperty) Begin ¶
func (this JSONLDTypeProperty) Begin() vocab.JSONLDTypePropertyIterator
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 (JSONLDTypeProperty) Empty ¶
func (this JSONLDTypeProperty) Empty() bool
Empty returns returns true if there are no elements.
func (JSONLDTypeProperty) End ¶
func (this JSONLDTypeProperty) End() vocab.JSONLDTypePropertyIterator
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 (*JSONLDTypeProperty) InsertIRI ¶
func (this *JSONLDTypeProperty) InsertIRI(idx int, v *url.URL)
Insert inserts an IRI value at the specified index for a property "type". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*JSONLDTypeProperty) InsertXMLSchemaAnyURI ¶
func (this *JSONLDTypeProperty) InsertXMLSchemaAnyURI(idx int, v *url.URL)
InsertXMLSchemaAnyURI inserts a anyURI value at the specified index for a property "type". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*JSONLDTypeProperty) InsertXMLSchemaString ¶
func (this *JSONLDTypeProperty) InsertXMLSchemaString(idx int, v string)
InsertXMLSchemaString inserts a string value at the specified index for a property "type". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (JSONLDTypeProperty) JSONLDContext ¶
func (this JSONLDTypeProperty) 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 (JSONLDTypeProperty) KindIndex ¶
func (this JSONLDTypeProperty) 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 (JSONLDTypeProperty) Len ¶
func (this JSONLDTypeProperty) Len() (length int)
Len returns the number of values that exist for the "type" property.
func (JSONLDTypeProperty) Less ¶
func (this JSONLDTypeProperty) 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 (JSONLDTypeProperty) LessThan ¶
func (this JSONLDTypeProperty) LessThan(o vocab.JSONLDTypeProperty) 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 (JSONLDTypeProperty) Name ¶
func (this JSONLDTypeProperty) Name() string
Name returns the name of this property ("type") with any alias.
func (*JSONLDTypeProperty) PrependIRI ¶
func (this *JSONLDTypeProperty) PrependIRI(v *url.URL)
PrependIRI prepends an IRI value to the front of a list of the property "type".
func (*JSONLDTypeProperty) PrependXMLSchemaAnyURI ¶
func (this *JSONLDTypeProperty) PrependXMLSchemaAnyURI(v *url.URL)
PrependXMLSchemaAnyURI prepends a anyURI value to the front of a list of the property "type". Invalidates all iterators.
func (*JSONLDTypeProperty) PrependXMLSchemaString ¶
func (this *JSONLDTypeProperty) PrependXMLSchemaString(v string)
PrependXMLSchemaString prepends a string value to the front of a list of the property "type". Invalidates all iterators.
func (*JSONLDTypeProperty) Remove ¶
func (this *JSONLDTypeProperty) Remove(idx int)
Remove deletes an element at the specified index from a list of the property "type", regardless of its type. Panics if the index is out of bounds. Invalidates all iterators.
func (JSONLDTypeProperty) Serialize ¶
func (this JSONLDTypeProperty) 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 (*JSONLDTypeProperty) SetIRI ¶
func (this *JSONLDTypeProperty) SetIRI(idx int, v *url.URL)
SetIRI sets an IRI value to be at the specified index for the property "type". Panics if the index is out of bounds.
func (*JSONLDTypeProperty) SetXMLSchemaAnyURI ¶
func (this *JSONLDTypeProperty) SetXMLSchemaAnyURI(idx int, v *url.URL)
SetXMLSchemaAnyURI sets a anyURI value to be at the specified index for the property "type". Panics if the index is out of bounds. Invalidates all iterators.
func (*JSONLDTypeProperty) SetXMLSchemaString ¶
func (this *JSONLDTypeProperty) SetXMLSchemaString(idx int, v string)
SetXMLSchemaString sets a string value to be at the specified index for the property "type". Panics if the index is out of bounds. Invalidates all iterators.
func (JSONLDTypeProperty) Swap ¶
func (this JSONLDTypeProperty) Swap(i, j int)
Swap swaps the location of values at two indices for the "type" property.
type JSONLDTypePropertyIterator ¶
type JSONLDTypePropertyIterator struct {
// contains filtered or unexported fields
}
JSONLDTypePropertyIterator 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 NewJSONLDTypePropertyIterator ¶
func NewJSONLDTypePropertyIterator() *JSONLDTypePropertyIterator
NewJSONLDTypePropertyIterator creates a new JSONLDType property.
func (JSONLDTypePropertyIterator) GetIRI ¶
func (this JSONLDTypePropertyIterator) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return an arbitrary value.
func (JSONLDTypePropertyIterator) GetXMLSchemaAnyURI ¶
func (this JSONLDTypePropertyIterator) GetXMLSchemaAnyURI() *url.URL
GetXMLSchemaAnyURI returns the value of this property. When IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an arbitrary value.
func (JSONLDTypePropertyIterator) GetXMLSchemaString ¶
func (this JSONLDTypePropertyIterator) GetXMLSchemaString() string
GetXMLSchemaString returns the value of this property. When IsXMLSchemaString returns false, GetXMLSchemaString will return an arbitrary value.
func (JSONLDTypePropertyIterator) HasAny ¶
func (this JSONLDTypePropertyIterator) HasAny() bool
HasAny returns true if any of the different values is set.
func (JSONLDTypePropertyIterator) IsIRI ¶
func (this JSONLDTypePropertyIterator) IsIRI() bool
IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI to access and set this property
func (JSONLDTypePropertyIterator) IsXMLSchemaAnyURI ¶
func (this JSONLDTypePropertyIterator) 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 (JSONLDTypePropertyIterator) IsXMLSchemaString ¶
func (this JSONLDTypePropertyIterator) 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.
func (JSONLDTypePropertyIterator) JSONLDContext ¶
func (this JSONLDTypePropertyIterator) 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 (JSONLDTypePropertyIterator) KindIndex ¶
func (this JSONLDTypePropertyIterator) 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 (JSONLDTypePropertyIterator) LessThan ¶
func (this JSONLDTypePropertyIterator) LessThan(o vocab.JSONLDTypePropertyIterator) 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 (JSONLDTypePropertyIterator) Name ¶
func (this JSONLDTypePropertyIterator) Name() string
Name returns the name of this property: "JSONLDType".
func (JSONLDTypePropertyIterator) Next ¶
func (this JSONLDTypePropertyIterator) Next() vocab.JSONLDTypePropertyIterator
Next returns the next iterator, or nil if there is no next iterator.
func (JSONLDTypePropertyIterator) Prev ¶
func (this JSONLDTypePropertyIterator) Prev() vocab.JSONLDTypePropertyIterator
Prev returns the previous iterator, or nil if there is no previous iterator.
func (*JSONLDTypePropertyIterator) SetIRI ¶
func (this *JSONLDTypePropertyIterator) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
func (*JSONLDTypePropertyIterator) SetXMLSchemaAnyURI ¶
func (this *JSONLDTypePropertyIterator) SetXMLSchemaAnyURI(v *url.URL)
SetXMLSchemaAnyURI sets the value of this property. Calling IsXMLSchemaAnyURI afterwards returns true.
func (*JSONLDTypePropertyIterator) SetXMLSchemaString ¶
func (this *JSONLDTypePropertyIterator) SetXMLSchemaString(v string)
SetXMLSchemaString sets the value of this property. Calling IsXMLSchemaString afterwards returns true.