public interface DataTypeDescriptionType extends BaseDataVariableType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<String> |
DATA_TYPE_VERSION |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.ByteString> |
DICTIONARY_FRAGMENT |
| Modifier and Type | Method and Description |
|---|---|
String |
getDataTypeVersion()
Get the local value of the DataTypeVersion Node.
|
PropertyType |
getDataTypeVersionNode()
Get the DataTypeVersion
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getDataTypeVersionNodeAsync()
Asynchronous implementation of
getDataTypeVersionNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.ByteString |
getDictionaryFragment()
Get the local value of the DictionaryFragment Node.
|
PropertyType |
getDictionaryFragmentNode()
Get the DictionaryFragment
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getDictionaryFragmentNodeAsync()
Asynchronous implementation of
getDictionaryFragmentNode(). |
String |
readDataTypeVersion()
Read the value of the DataTypeVersion Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String> |
readDataTypeVersionAsync()
An asynchronous implementation of
readDataTypeVersion(). |
org.eclipse.milo.opcua.stack.core.types.builtin.ByteString |
readDictionaryFragment()
Read the value of the DictionaryFragment Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.ByteString> |
readDictionaryFragmentAsync()
An asynchronous implementation of
readDictionaryFragment(). |
void |
setDataTypeVersion(String dataTypeVersion)
Set the local value of the DataTypeVersion Node.
|
void |
setDictionaryFragment(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString dictionaryFragment)
Set the local value of the DictionaryFragment Node.
|
void |
writeDataTypeVersion(String dataTypeVersion)
Write a new value for the DataTypeVersion Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeDataTypeVersionAsync(String dataTypeVersion)
An asynchronous implementation of
writeDataTypeVersion(String). |
void |
writeDictionaryFragment(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString dictionaryFragment)
Write a new value for the DictionaryFragment Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeDictionaryFragmentAsync(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString dictionaryFragment)
An asynchronous implementation of
writeDictionaryFragment(ByteString). |
getAccessLevel, getArrayDimensions, getDataType, getHistorizing, getMinimumSamplingInterval, getUserAccessLevel, getValue, getValueRank, setAccessLevel, setArrayDimensions, setDataType, setHistorizing, setMinimumSamplingInterval, setUserAccessLevel, setValue, setValueRankgetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskstatic final QualifiedProperty<String> DATA_TYPE_VERSION
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.ByteString> DICTIONARY_FRAGMENT
String getDataTypeVersion() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataTypeVersion Node.void setDataTypeVersion(String dataTypeVersion) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
dataTypeVersion - the local value to set for the DataTypeVersion Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataTypeVersion Node.String readDataTypeVersion() throws org.eclipse.milo.opcua.stack.core.UaException
String value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeDataTypeVersion(String dataTypeVersion) throws org.eclipse.milo.opcua.stack.core.UaException
dataTypeVersion - the String value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends String> readDataTypeVersionAsync()
readDataTypeVersion().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDataTypeVersionAsync(String dataTypeVersion)
writeDataTypeVersion(String).PropertyType getDataTypeVersionNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getDataTypeVersionNodeAsync()
getDataTypeVersionNode().org.eclipse.milo.opcua.stack.core.types.builtin.ByteString getDictionaryFragment()
throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DictionaryFragment Node.void setDictionaryFragment(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString dictionaryFragment)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
dictionaryFragment - the local value to set for the DictionaryFragment Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DictionaryFragment Node.org.eclipse.milo.opcua.stack.core.types.builtin.ByteString readDictionaryFragment()
throws org.eclipse.milo.opcua.stack.core.UaException
ByteString value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeDictionaryFragment(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString dictionaryFragment)
throws org.eclipse.milo.opcua.stack.core.UaException
dictionaryFragment - the ByteString value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.ByteString> readDictionaryFragmentAsync()
readDictionaryFragment().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDictionaryFragmentAsync(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString dictionaryFragment)
writeDictionaryFragment(ByteString).PropertyType getDictionaryFragmentNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getDictionaryFragmentNodeAsync()
getDictionaryFragmentNode().Copyright © 2021. All rights reserved.