Class RootMethodType
- java.lang.Object
-
- de.iip_ecosphere.platform.configuration.opcua.data.BaseType
-
- de.iip_ecosphere.platform.configuration.opcua.data.ObjectType
-
- de.iip_ecosphere.platform.configuration.opcua.data.RootMethodType
-
public class RootMethodType extends ObjectType
Represents an OPC UA root method.- Author:
- Jan-Hendrik Cepok, SSE
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringrootParent
-
Constructor Summary
Constructors Constructor Description RootMethodType(java.lang.String nodeId, java.lang.String browseName, java.lang.String displayName, java.lang.String description, boolean optional, java.lang.String type, java.lang.String rootParent, java.util.ArrayList<FieldType> fields)Creates an OPC UA root method type representation/declaration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetRootParent()Returns the root parent.java.lang.StringtoString()Formats the respective OPC UA type in IVML.-
Methods inherited from class de.iip_ecosphere.platform.configuration.opcua.data.ObjectType
getFields, getType, setFields
-
Methods inherited from class de.iip_ecosphere.platform.configuration.opcua.data.BaseType
formatNodeId, getBrowseName, getDescription, getDisplayname, getNodeId, getVarName, isOptional, setVarName, validateVarName
-
-
-
-
Constructor Detail
-
RootMethodType
public RootMethodType(java.lang.String nodeId, java.lang.String browseName, java.lang.String displayName, java.lang.String description, boolean optional, java.lang.String type, java.lang.String rootParent, java.util.ArrayList<FieldType> fields)Creates an OPC UA root method type representation/declaration.- Parameters:
nodeId- the node idbrowseName- the browse namedisplayName- the display namedescription- the descriptionoptional- whether the type is optionaltype- the type of the objectrootParent- the root parentfields- the fields the object is constituted from
-
-
Method Detail
-
getRootParent
public java.lang.String getRootParent()
Returns the root parent.- Returns:
- the root parent
-
toString
public java.lang.String toString()
Description copied from class:BaseTypeFormats the respective OPC UA type in IVML.- Overrides:
toStringin classObjectType- Returns:
- the IVML representation of the OPC UA type
-
-