public interface Node
| Modifier and Type | Method and Description |
|---|---|
QualifiedName |
getBrowseName()
Get the BrowseName attribute.
|
LocalizedText |
getDescription()
Get the Description attribute.
|
LocalizedText |
getDisplayName()
See OPC UA Part 3, section 5.2.5.
|
NodeClass |
getNodeClass()
Get the NodeClass attribute.
|
NodeId |
getNodeId()
Get the NodeId attribute.
|
UInteger |
getUserWriteMask()
Get the UserWriteMask attribute.
|
UInteger |
getWriteMask()
Get the WriteMask attribute.
|
void |
setBrowseName(QualifiedName browseName)
Set the BrowseName attribute of this Node.
|
void |
setDescription(LocalizedText description)
Set the Description attribute of this Node.
|
void |
setDisplayName(LocalizedText displayName)
Set the DisplayName attribute of this Node.
|
void |
setNodeClass(NodeClass nodeClass)
Set the NodeClass attribute of this Node.
|
void |
setNodeId(NodeId nodeId)
Set the NodeId attribute of this Node.
|
void |
setUserWriteMask(UInteger userWriteMask)
Set the UserWriteMask attribute of this Node.
|
void |
setWriteMask(UInteger writeMask)
Set the WriteMask attribute of this Node.
|
NodeId getNodeId()
The NodeId is an unambiguous identifier that identifies a Node in a server.
See OPC UA Part 3, section 5.2.2.
NodeId) of this node.NodeClass getNodeClass()
The NodeClass attribute identifies the NodeClass of a Node.
See OPC UA Part 3, section 5.2.3.
NodeClass) of this node.QualifiedName getBrowseName()
The BrowseName attribute is a non-localized human-readable name for the Node that is used when browsing the address space. BrowseNames can be combined to form browse paths for use with the TranslateBrowsePathToNodeId service.
See OPC UA Part 3, section 5.2.4.
QualifiedName) of this node.LocalizedText getDisplayName()
QualifiedName) of this node.LocalizedText getDescription()
The optional Description Attribute explains the meaning of the Node in a LocalizedText.
See OPC UA Part 3, section 5.2.6.
LocalizedText).UInteger getWriteMask()
The optional WriteMask Attribute exposes the possibilities of a client to write the Attributes of the Node. The WriteMask Attribute does not take any user access rights into account.
See OPC UA Part 3, section 5.2.7.
UInteger).UInteger getUserWriteMask()
The optional UserWriteMask Attribute exposes the possibilities of a client to write the Attributes of the Node taking user access rights into account.
See OPC UA Part 3, section 5.2.8.
UInteger).void setNodeId(NodeId nodeId)
nodeId - the NodeId to set.getNodeId()void setNodeClass(NodeClass nodeClass)
nodeClass - the NodeClass to set.getNodeClass()void setBrowseName(QualifiedName browseName)
browseName - the BrowseName to set.getBrowseName()void setDisplayName(LocalizedText displayName)
displayName - the DisplayName to set.getDisplayName()void setDescription(LocalizedText description)
description - the Description to set.getDescription()void setWriteMask(UInteger writeMask)
writeMask - the WriteMask to set.getWriteMask()void setUserWriteMask(UInteger userWriteMask)
userWriteMask - the UserWriteMask to set.getUserWriteMask()Copyright © 2025. All rights reserved.