Uses of Interface
org.eclipse.milo.opcua.sdk.core.typetree.DataType
Packages that use DataType
Package
Description
-
Uses of DataType in org.eclipse.milo.opcua.sdk.core.types
Methods in org.eclipse.milo.opcua.sdk.core.types that return DataTypeModifier and TypeMethodDescriptionDynamicEnumType.getDataType()DynamicOptionSetType.getDataType()DynamicStructType.getDataType()abstract DataTypeDynamicType.getDataType()Get theDataTypethat defines this type.DynamicUnionType.getDataType()Methods in org.eclipse.milo.opcua.sdk.core.types with parameters of type DataTypeModifier and TypeMethodDescriptionstatic DynamicEnumTypeDynamicEnumType.newInstance(DataType dataType, int value) Create a new DynamicEnumType using the given DataType and value.static DynamicOptionSetTypeDynamicOptionSetType.newInstance(DataType dataType, org.eclipse.milo.opcua.stack.core.types.builtin.ByteString value, org.eclipse.milo.opcua.stack.core.types.builtin.ByteString validBits) Create a new instance ofDynamicOptionSetTypeusing the given DataType.static DynamicStructTypeDynamicStructType.newInstance(DataType dataType) Create a new DynamicStructType using the given DataType.static DynamicUnionTypeDynamicUnionType.newInstance(DataType dataType, @Nullable DynamicUnionType.UnionValue value) Create a new DynamicUnionType using the given DataType and value.static Function<Integer,DynamicEnumType> DynamicEnumType.newInstanceFactory(DataType dataType) Create a new instance "factory" that produces new DynamicEnumType instances of the given DataType.static BiFunction<org.eclipse.milo.opcua.stack.core.types.builtin.ByteString,org.eclipse.milo.opcua.stack.core.types.builtin.ByteString, DynamicOptionSetType> DynamicOptionSetType.newInstanceFactory(DataType dataType) Create a new instance "factory" that produces newDynamicOptionSetTypeinstances of the given DataType.static Supplier<DynamicStructType>DynamicStructType.newInstanceFactory(DataType dataType) Create a new instance "factory" that produces new DynamicStructType instances of the given DataType.DynamicUnionType.newInstanceFactory(DataType dataType) Create a new instance "factory" that produces new DynamicUnionType instances of the given DataType.Constructors in org.eclipse.milo.opcua.sdk.core.types with parameters of type DataTypeModifierConstructorDescriptionDynamicEnumType(DataType dataType, int value) DynamicOptionSetType(DataType dataType, org.eclipse.milo.opcua.stack.core.types.builtin.ByteString value, org.eclipse.milo.opcua.stack.core.types.builtin.ByteString validBits) DynamicStructType(DataType dataType, LinkedHashMap<String, Object> members) DynamicUnionType(DataType dataType) DynamicUnionType(DataType dataType, @Nullable DynamicUnionType.UnionValue value) -
Uses of DataType in org.eclipse.milo.opcua.sdk.core.types.codec
Methods in org.eclipse.milo.opcua.sdk.core.types.codec with parameters of type DataTypeModifier and TypeMethodDescriptionstatic org.eclipse.milo.opcua.stack.core.encoding.DataTypeCodecDynamicCodecFactory.create(DataType dataType, DataTypeTree dataTypeTree) Constructors in org.eclipse.milo.opcua.sdk.core.types.codec with parameters of type DataTypeModifierConstructorDescriptionDynamicStructCodec(DataType dataType, DataTypeTree dataTypeTree) DynamicUnionCodec(DataType dataType, DataTypeTree dataTypeTree) -
Uses of DataType in org.eclipse.milo.opcua.sdk.core.typetree
Methods in org.eclipse.milo.opcua.sdk.core.typetree that return DataTypeModifier and TypeMethodDescription@Nullable DataTypeDataTypeTree.getDataType(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId dataTypeId) Get theDataTypeinfo for the DataType identified bydataTypeId, if it exists.Methods in org.eclipse.milo.opcua.sdk.core.typetree that return types with arguments of type DataTypeModifier and TypeMethodDescription@Nullable org.eclipse.milo.opcua.stack.core.util.Tree<DataType>DataTypeTree.getTreeNode(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId dataTypeId) Get the underlyingTreenode for the DataType identified bydataTypeId.Constructor parameters in org.eclipse.milo.opcua.sdk.core.typetree with type arguments of type DataTypeModifierConstructorDescriptionDataTypeTree(org.eclipse.milo.opcua.stack.core.util.Tree<DataType> tree)