Search in sources :

Example 1 with AASEntityTypeDataType

use of opc.i4aas.AASEntityTypeDataType in project FAAAST-Service by FraunhoferIOSB.

the class AASEntityTypeNodeBase method getEntityType.

@Mandatory
@Override
public AASEntityTypeDataType getEntityType() {
    UaVariable node = getEntityTypeNode();
    if (node == null) {
        throw new RuntimeException("Mandatory node EntityType does not exist");
    }
    Variant value = node.getValue().getValue();
    return (AASEntityTypeDataType) value.asEnum(AASEntityTypeDataType.class);
}
Also used : Variant(com.prosysopc.ua.stack.builtintypes.Variant) AASEntityTypeDataType(opc.i4aas.AASEntityTypeDataType) UaVariable(com.prosysopc.ua.nodes.UaVariable) Mandatory(com.prosysopc.ua.nodes.Mandatory)

Example 2 with AASEntityTypeDataType

use of opc.i4aas.AASEntityTypeDataType in project FAAAST-Service by FraunhoferIOSB.

the class AASEntityTypeImplBase method getEntityType.

@Mandatory
@Override
public AASEntityTypeDataType getEntityType() {
    UaVariable node = getEntityTypeNode();
    if (node == null) {
        return null;
    }
    Variant value = node.getValue().getValue();
    return (AASEntityTypeDataType) value.asEnum(AASEntityTypeDataType.class);
}
Also used : Variant(com.prosysopc.ua.stack.builtintypes.Variant) AASEntityTypeDataType(opc.i4aas.AASEntityTypeDataType) UaVariable(com.prosysopc.ua.nodes.UaVariable) Mandatory(com.prosysopc.ua.nodes.Mandatory)

Aggregations

Mandatory (com.prosysopc.ua.nodes.Mandatory)2 UaVariable (com.prosysopc.ua.nodes.UaVariable)2 Variant (com.prosysopc.ua.stack.builtintypes.Variant)2 AASEntityTypeDataType (opc.i4aas.AASEntityTypeDataType)2