Documentation ¶
Overview ¶
Package propertyowner contains the implementation for the owner 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 SetManager(m privateManager)
- type W3IDSecurityV1OwnerProperty
- func (this *W3IDSecurityV1OwnerProperty) Clear()
- func (this W3IDSecurityV1OwnerProperty) Get() *url.URL
- func (this W3IDSecurityV1OwnerProperty) GetIRI() *url.URL
- func (this W3IDSecurityV1OwnerProperty) HasAny() bool
- func (this W3IDSecurityV1OwnerProperty) IsIRI() bool
- func (this W3IDSecurityV1OwnerProperty) IsXMLSchemaAnyURI() bool
- func (this W3IDSecurityV1OwnerProperty) JSONLDContext() map[string]string
- func (this W3IDSecurityV1OwnerProperty) KindIndex() int
- func (this W3IDSecurityV1OwnerProperty) LessThan(o vocab.W3IDSecurityV1OwnerProperty) bool
- func (this W3IDSecurityV1OwnerProperty) Name() string
- func (this W3IDSecurityV1OwnerProperty) Serialize() (interface{}, error)
- func (this *W3IDSecurityV1OwnerProperty) Set(v *url.URL)
- func (this *W3IDSecurityV1OwnerProperty) SetIRI(v *url.URL)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
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 W3IDSecurityV1OwnerProperty ¶
type W3IDSecurityV1OwnerProperty struct {
// contains filtered or unexported fields
}
W3IDSecurityV1OwnerProperty is the functional property "owner". It is permitted to be a single nilable value type.
func DeserializeOwnerProperty ¶
func DeserializeOwnerProperty(m map[string]interface{}, aliasMap map[string]string) (*W3IDSecurityV1OwnerProperty, error)
DeserializeOwnerProperty creates a "owner" property from an interface representation that has been unmarshalled from a text or binary format.
func NewW3IDSecurityV1OwnerProperty ¶
func NewW3IDSecurityV1OwnerProperty() *W3IDSecurityV1OwnerProperty
NewW3IDSecurityV1OwnerProperty creates a new owner property.
func (*W3IDSecurityV1OwnerProperty) Clear ¶
func (this *W3IDSecurityV1OwnerProperty) Clear()
Clear ensures no value of this property is set. Calling IsXMLSchemaAnyURI afterwards will return false.
func (W3IDSecurityV1OwnerProperty) Get ¶
func (this W3IDSecurityV1OwnerProperty) Get() *url.URL
Get returns the value of this property. When IsXMLSchemaAnyURI returns false, Get will return any arbitrary value.
func (W3IDSecurityV1OwnerProperty) GetIRI ¶
func (this W3IDSecurityV1OwnerProperty) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return any arbitrary value.
func (W3IDSecurityV1OwnerProperty) HasAny ¶
func (this W3IDSecurityV1OwnerProperty) HasAny() bool
HasAny returns true if the value or IRI is set.
func (W3IDSecurityV1OwnerProperty) IsIRI ¶
func (this W3IDSecurityV1OwnerProperty) IsIRI() bool
IsIRI returns true if this property is an IRI.
func (W3IDSecurityV1OwnerProperty) IsXMLSchemaAnyURI ¶
func (this W3IDSecurityV1OwnerProperty) IsXMLSchemaAnyURI() bool
IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
func (W3IDSecurityV1OwnerProperty) JSONLDContext ¶
func (this W3IDSecurityV1OwnerProperty) 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 (W3IDSecurityV1OwnerProperty) KindIndex ¶
func (this W3IDSecurityV1OwnerProperty) 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 (W3IDSecurityV1OwnerProperty) LessThan ¶
func (this W3IDSecurityV1OwnerProperty) LessThan(o vocab.W3IDSecurityV1OwnerProperty) 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 (W3IDSecurityV1OwnerProperty) Name ¶
func (this W3IDSecurityV1OwnerProperty) Name() string
Name returns the name of this property: "owner".
func (W3IDSecurityV1OwnerProperty) Serialize ¶
func (this W3IDSecurityV1OwnerProperty) 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 (*W3IDSecurityV1OwnerProperty) Set ¶
func (this *W3IDSecurityV1OwnerProperty) Set(v *url.URL)
Set sets the value of this property. Calling IsXMLSchemaAnyURI afterwards will return true.
func (*W3IDSecurityV1OwnerProperty) SetIRI ¶
func (this *W3IDSecurityV1OwnerProperty) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards will return true.