| Constructor and Description |
|---|
UaViewNode(OpcUaClient client,
org.eclipse.milo.opcua.stack.core.types.builtin.NodeId nodeId,
org.eclipse.milo.opcua.stack.core.types.enumerated.NodeClass nodeClass,
org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName browseName,
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText displayName,
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText description,
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger writeMask,
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger userWriteMask,
Boolean containsNoLoops,
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier) |
| Modifier and Type | Method and Description |
|---|---|
protected org.eclipse.milo.opcua.stack.core.types.builtin.DataValue |
getAttributeValue(org.eclipse.milo.opcua.stack.core.AttributeId attributeId) |
Boolean |
getContainsNoLoops() |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte |
getEventNotifier() |
Boolean |
readContainsNoLoops()
Read the ContainsNoLoops attribute for this Node from the server and update the local
attribute if the operation succeeds.
|
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte |
readEventNotifier()
Read the EventNotifier attribute for this Node from the server and update the local
attribute if the operation succeeds.
|
CompletableFuture<? extends String> |
readNodeVersionAsync()
Get the value of the
ViewNodeProperties.NodeVersion Property, if it exists. |
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> |
readViewVersionAsync()
Get the value of the
ViewNodeProperties.ViewVersion Property, if it exists. |
protected void |
setAttributeValue(org.eclipse.milo.opcua.stack.core.AttributeId attributeId,
org.eclipse.milo.opcua.stack.core.types.builtin.DataValue value) |
void |
setContainsNoLoops(Boolean containsNoLoops) |
void |
setEventNotifier(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier) |
void |
writeContainsNoLoops(Boolean containsNoLoops)
Write a new ContainsNoLoops attribute for this Node to the server and update the local
attribute if the operation succeeds.
|
void |
writeEventNotifier(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier)
Write a new EventNotifier attribute for this Node to the server and update the local
attribute if the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeNodeVersionAsync(String nodeVersion)
Set the value of the
ViewNodeProperties.NodeVersion Property, if it exists. |
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeViewVersionAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger viewVersion)
Set the value of the
ViewNodeProperties.ViewVersion Property, if it exists. |
browse, browse, browseAsync, browseAsync, browseNodes, browseNodes, browseNodesAsync, browseNodesAsync, canonicalize, cast, findMemberNodeId, getBrowseName, getComponentAsync, getDescription, getDisplayName, getMemberNodeAsync, getNodeClass, getNodeId, getProperty, getPropertyNodeAsync, getPropertyNodeAsync, getUserWriteMask, getWriteMask, invalidate, readAttribute, readAttributeAsync, readBrowseName, readDescription, readDisplayName, readNamespaceIndex, readNodeClass, readNodeId, readProperty, readUserWriteMask, readWriteMask, refresh, refreshAsync, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setProperty, setUserWriteMask, setWriteMask, synchronize, synchronizeAsync, writeAttribute, writeAttributeAsync, writeBrowseName, writeDescription, writeDisplayName, writeNodeClass, writeNodeId, writeProperty, writeUserWriteMask, writeWriteMaskclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskpublic UaViewNode(OpcUaClient client, org.eclipse.milo.opcua.stack.core.types.builtin.NodeId nodeId, org.eclipse.milo.opcua.stack.core.types.enumerated.NodeClass nodeClass, org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName browseName, org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText displayName, org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText description, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger writeMask, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger userWriteMask, Boolean containsNoLoops, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier)
public Boolean getContainsNoLoops()
The returned attribute is the most recently seen value; it is not read live from the server.
getContainsNoLoops in interface ViewNodereadContainsNoLoops()public org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte getEventNotifier()
The returned attribute is the most recently seen value; it is not read live from the server.
getEventNotifier in interface ViewNodereadEventNotifier()public void setContainsNoLoops(Boolean containsNoLoops)
The attribute is only updated locally; it is not written to the server.
setContainsNoLoops in interface ViewNodewriteContainsNoLoops(Boolean)public void setEventNotifier(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier)
The attribute is only updated locally; it is not written to the server.
setEventNotifier in interface ViewNodewriteEventNotifier(UByte)public Boolean readContainsNoLoops() throws org.eclipse.milo.opcua.stack.core.UaException
Boolean read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.spublic org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte readEventNotifier()
throws org.eclipse.milo.opcua.stack.core.UaException
UByte read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.spublic void writeContainsNoLoops(Boolean containsNoLoops) throws org.eclipse.milo.opcua.stack.core.UaException
containsNoLoops - the Boolean to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeEventNotifier(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier)
throws org.eclipse.milo.opcua.stack.core.UaException
eventNotifier - the UByte to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public CompletableFuture<? extends String> readNodeVersionAsync()
ViewNodeProperties.NodeVersion Property, if it exists.ViewNodePropertiespublic CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readViewVersionAsync()
ViewNodeProperties.ViewVersion Property, if it exists.ViewNodePropertiespublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNodeVersionAsync(String nodeVersion)
ViewNodeProperties.NodeVersion Property, if it exists.nodeVersion - the value to set.CompletableFuture that completes with the StatusCode of the write operation.ViewNodePropertiespublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeViewVersionAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger viewVersion)
ViewNodeProperties.ViewVersion Property, if it exists.viewVersion - the value to set.CompletableFuture that completes with the StatusCode of the write operation.ViewNodePropertiesprotected org.eclipse.milo.opcua.stack.core.types.builtin.DataValue getAttributeValue(org.eclipse.milo.opcua.stack.core.AttributeId attributeId)
getAttributeValue in class UaNodeprotected void setAttributeValue(org.eclipse.milo.opcua.stack.core.AttributeId attributeId,
org.eclipse.milo.opcua.stack.core.types.builtin.DataValue value)
setAttributeValue in class UaNodeCopyright © 2021. All rights reserved.