Documentation ¶
Overview ¶
Package propertypreferredusername contains the implementation for the preferredUsername 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 ActivityStreamsPreferredUsernameProperty
- func (this *ActivityStreamsPreferredUsernameProperty) Clear()
- func (this ActivityStreamsPreferredUsernameProperty) GetIRI() *url.URL
- func (this ActivityStreamsPreferredUsernameProperty) GetLanguage(bcp47 string) string
- func (this ActivityStreamsPreferredUsernameProperty) GetRDFLangString() map[string]string
- func (this ActivityStreamsPreferredUsernameProperty) GetXMLSchemaString() string
- func (this ActivityStreamsPreferredUsernameProperty) HasAny() bool
- func (this ActivityStreamsPreferredUsernameProperty) HasLanguage(bcp47 string) bool
- func (this ActivityStreamsPreferredUsernameProperty) IsIRI() bool
- func (this ActivityStreamsPreferredUsernameProperty) IsRDFLangString() bool
- func (this ActivityStreamsPreferredUsernameProperty) IsXMLSchemaString() bool
- func (this ActivityStreamsPreferredUsernameProperty) JSONLDContext() map[string]string
- func (this ActivityStreamsPreferredUsernameProperty) KindIndex() int
- func (this ActivityStreamsPreferredUsernameProperty) LessThan(o vocab.ActivityStreamsPreferredUsernameProperty) bool
- func (this ActivityStreamsPreferredUsernameProperty) Name() string
- func (this ActivityStreamsPreferredUsernameProperty) Serialize() (interface{}, error)
- func (this *ActivityStreamsPreferredUsernameProperty) SetIRI(v *url.URL)
- func (this *ActivityStreamsPreferredUsernameProperty) SetLanguage(bcp47, value string)
- func (this *ActivityStreamsPreferredUsernameProperty) SetRDFLangString(v map[string]string)
- func (this *ActivityStreamsPreferredUsernameProperty) SetXMLSchemaString(v string)
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 ActivityStreamsPreferredUsernameProperty ¶
type ActivityStreamsPreferredUsernameProperty struct {
// contains filtered or unexported fields
}
ActivityStreamsPreferredUsernameProperty is the functional property "preferredUsername". 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 DeserializePreferredUsernameProperty ¶
func DeserializePreferredUsernameProperty(m map[string]interface{}, aliasMap map[string]string) (*ActivityStreamsPreferredUsernameProperty, error)
DeserializePreferredUsernameProperty creates a "preferredUsername" property from an interface representation that has been unmarshalled from a text or binary format.
func NewActivityStreamsPreferredUsernameProperty ¶
func NewActivityStreamsPreferredUsernameProperty() *ActivityStreamsPreferredUsernameProperty
NewActivityStreamsPreferredUsernameProperty creates a new preferredUsername property.
func (*ActivityStreamsPreferredUsernameProperty) Clear ¶
func (this *ActivityStreamsPreferredUsernameProperty) Clear()
Clear ensures no value and no language map for this property is set. Calling HasAny or any of the 'Is' methods afterwards will return false.
func (ActivityStreamsPreferredUsernameProperty) GetIRI ¶
func (this ActivityStreamsPreferredUsernameProperty) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return an arbitrary value.
func (ActivityStreamsPreferredUsernameProperty) GetLanguage ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) GetRDFLangString ¶
func (this ActivityStreamsPreferredUsernameProperty) GetRDFLangString() map[string]string
GetRDFLangString returns the value of this property. When IsRDFLangString returns false, GetRDFLangString will return an arbitrary value.
func (ActivityStreamsPreferredUsernameProperty) GetXMLSchemaString ¶
func (this ActivityStreamsPreferredUsernameProperty) GetXMLSchemaString() string
GetXMLSchemaString returns the value of this property. When IsXMLSchemaString returns false, GetXMLSchemaString will return an arbitrary value.
func (ActivityStreamsPreferredUsernameProperty) HasAny ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) HasLanguage ¶
func (this ActivityStreamsPreferredUsernameProperty) HasLanguage(bcp47 string) bool
HasLanguage returns true if the natural language map has an entry for the specified BCP47 language code.
func (ActivityStreamsPreferredUsernameProperty) IsIRI ¶
func (this ActivityStreamsPreferredUsernameProperty) IsIRI() bool
IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI to access and set this property
func (ActivityStreamsPreferredUsernameProperty) IsRDFLangString ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) IsXMLSchemaString ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) JSONLDContext ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) KindIndex ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) LessThan ¶
func (this ActivityStreamsPreferredUsernameProperty) LessThan(o vocab.ActivityStreamsPreferredUsernameProperty) 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 (ActivityStreamsPreferredUsernameProperty) Name ¶
func (this ActivityStreamsPreferredUsernameProperty) Name() string
Name returns the name of this property: "preferredUsername".
func (ActivityStreamsPreferredUsernameProperty) Serialize ¶
func (this ActivityStreamsPreferredUsernameProperty) 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 (*ActivityStreamsPreferredUsernameProperty) SetIRI ¶
func (this *ActivityStreamsPreferredUsernameProperty) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
func (*ActivityStreamsPreferredUsernameProperty) SetLanguage ¶
func (this *ActivityStreamsPreferredUsernameProperty) SetLanguage(bcp47, value string)
SetLanguage sets the value for the specified BCP47 language code.
func (*ActivityStreamsPreferredUsernameProperty) SetRDFLangString ¶
func (this *ActivityStreamsPreferredUsernameProperty) 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 (*ActivityStreamsPreferredUsernameProperty) SetXMLSchemaString ¶
func (this *ActivityStreamsPreferredUsernameProperty) 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.