Uses of Class
de.iip_ecosphere.platform.configuration.opcua.data.FieldType
-
Packages that use FieldType Package Description de.iip_ecosphere.platform.configuration.opcua.data de.iip_ecosphere.platform.configuration.opcua.parser -
-
Uses of FieldType in de.iip_ecosphere.platform.configuration.opcua.data
Subclasses of FieldType in de.iip_ecosphere.platform.configuration.opcua.data Modifier and Type Class Description classFieldMethodTypeRepresents an OPC UA field method type.classFieldObjectTypeRepresents an OPC UA field object type.classFieldVariableTypeRepresents an OPC UA field variable type.Fields in de.iip_ecosphere.platform.configuration.opcua.data with type parameters of type FieldType Modifier and Type Field Description private java.util.ArrayList<FieldType>MethodType. fieldsprivate java.util.ArrayList<FieldType>ObjectType. fieldsMethods in de.iip_ecosphere.platform.configuration.opcua.data that return types with arguments of type FieldType Modifier and Type Method Description java.util.ArrayList<FieldType>MethodType. getFields()Returns the fields making up the type.java.util.ArrayList<FieldType>ObjectType. getFields()Returns the fields making up the type.Method parameters in de.iip_ecosphere.platform.configuration.opcua.data with type arguments of type FieldType Modifier and Type Method Description voidMethodType. setFields(java.util.ArrayList<FieldType> fields)Changes the fields making up the type.voidObjectType. setFields(java.util.ArrayList<FieldType> fields)Changes the fields making up the type.Constructor parameters in de.iip_ecosphere.platform.configuration.opcua.data with type arguments of type FieldType 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.ObjectType(java.lang.String nodeId, java.lang.String browseName, java.lang.String displayName, java.lang.String description, boolean optional, java.lang.String type, java.util.ArrayList<FieldType> fields)Creates an OPC UA object type representation/declaration.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.RootObjectType(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 object type representation/declaration. -
Uses of FieldType in de.iip_ecosphere.platform.configuration.opcua.parser
Methods in de.iip_ecosphere.platform.configuration.opcua.parser that return types with arguments of type FieldType Modifier and Type Method Description private java.util.ArrayList<FieldType>DomParser. identifyFields(org.w3c.dom.Node childNode)Identifies the fields ofchildNode.Method parameters in de.iip_ecosphere.platform.configuration.opcua.parser with type arguments of type FieldType Modifier and Type Method Description private booleanDomParser. checkRedundancy(java.lang.String varName, java.util.ArrayList<FieldType> list)Checks for redundant/duplicate variable names inDomParser.hierarchy.private voidDomParser. createElement(ElementType type, org.w3c.dom.Element element, java.lang.String id, java.lang.String displayName, java.lang.String description, java.lang.String documentation, java.util.ArrayList<FieldType> subFields, java.util.ArrayList<FieldType> objectFields, java.util.ArrayList<EnumLiteral> literals, java.util.ArrayList<DataLiteral> dataLiterals, java.lang.String typeDef, boolean optional)Creates an element.private voidDomParser. retrieveAttributes(org.w3c.dom.Element element, java.util.ArrayList<FieldType> subFields, ElementType type, java.lang.String externNodeId)Retrieves the attributes and creates respective elements.private voidDomParser. retrieveAttributesForRefElement(java.util.ArrayList<FieldType> fields, java.lang.String refId, org.w3c.dom.Element refElement, ElementType elementType)Retrieves attribute for a reference element.private voidDomParser. retrieveRelatedSubElements(java.util.ArrayList<FieldType> subElements)Retrieves the related sub elements.
-