use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASSubmodelElementCollectionTypeImplBase method isAllowDuplicates.
@Optional
@Override
public Boolean isAllowDuplicates() {
UaVariable node = getAllowDuplicatesNode();
if (node == null) {
return null;
}
Object value = node.getValue().getValue().getValue();
return (Boolean) value;
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASSubmodelElementTypeImplBase method getModelingKind.
@Mandatory
@Override
public AASModelingKindDataType getModelingKind() {
UaVariable node = getModelingKindNode();
if (node == null) {
return null;
}
Variant value = node.getValue().getValue();
return (AASModelingKindDataType) value.asEnum(AASModelingKindDataType.class);
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASSubmodelElementTypeImplBase method getCategory.
@Mandatory
@Override
public String getCategory() {
UaVariable node = getCategoryNode();
if (node == null) {
return null;
}
Object value = node.getValue().getValue().getValue();
return (String) value;
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASReferenceTypeImplBase method getKeys.
@Mandatory
@Override
public AASKeyDataType[] getKeys() {
UaVariable node = getKeysNode();
if (node == null) {
return null;
}
Object value = node.getValue().getValue().getValue();
return (AASKeyDataType[]) value;
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASSubmodelElementCollectionTypeNodeBase method isAllowDuplicates.
@Optional
@Override
public Boolean isAllowDuplicates() {
UaVariable node = getAllowDuplicatesNode();
if (node == null) {
return null;
}
Object value = node.getValue().getValue().getValue();
return (Boolean) value;
}
Aggregations