Class MethodType
- java.lang.Object
-
- de.iip_ecosphere.platform.configuration.opcua.data.BaseType
-
- de.iip_ecosphere.platform.configuration.opcua.data.MethodType
-
public class MethodType extends BaseType
Represents an OPC UA method type (declaration).- Author:
- Jan-Hendrik Cepok, SSE
-
-
Constructor Summary
Constructors Constructor Description MethodType(java.lang.String nodeId, java.lang.String browseName, java.lang.String displayName, java.lang.String description, boolean optional, java.util.ArrayList<FieldType> fields)Creates an OPC UA method type representation/declaration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ArrayList<FieldType>getFields()Returns the fields making up the type.voidsetFields(java.util.ArrayList<FieldType> fields)Changes the fields making up the type.java.lang.StringtoString()Formats the respective OPC UA type in IVML.-
Methods inherited from class de.iip_ecosphere.platform.configuration.opcua.data.BaseType
formatNodeId, getBrowseName, getDescription, getDisplayname, getNodeId, getVarName, isOptional, setVarName, validateVarName
-
-
-
-
Field Detail
-
fields
private java.util.ArrayList<FieldType> fields
-
-
Constructor Detail
-
MethodType
public MethodType(java.lang.String nodeId, java.lang.String browseName, java.lang.String displayName, java.lang.String description, boolean optional, java.util.ArrayList<FieldType> fields)Creates an OPC UA method type representation/declaration.- Parameters:
nodeId- the node idbrowseName- the browse namedisplayName- the display namedescription- the descriptionoptional- whether the type is optionalfields- the fields the object is constituted from
-
-