Is there a typeUtility for the DataType conversions during write opertations #1389
ravi-kothapally
started this conversation in
General
Replies: 1 comment 5 replies
-
Yes, DataTypeTree is what you want. NodeId dataTypeId = ...;
DataTypeTree dataTypeTree = client.getDataTypeTree();
OpcUaDataType dataType = dataTypeTree.getBuiltinType(dataTypeId);
Class<?> backingClass = dataTypeTree.getBackingClass(dataTypeId); |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
During write operations, I am reading values as objects, so I need to convert them to Milo data types. However, there seem to be many such types. Is there a utility that can help with this?
Any guidance on this would be greatly appreciated!
am tying to do something like this, but is it enough??
Beta Was this translation helpful? Give feedback.
All reactions