Package edu.stanford.bmir.protege.web.shared.csv

Examples of edu.stanford.bmir.protege.web.shared.csv.ColumnType


        final Optional<OWLPrimitiveData> property = propertyField.getValue();
        if(property.isPresent()) {
            EntityType<?> propertyType = ((OWLEntity) property.get().getObject()).getEntityType();
            if(getColumnType().isPresent()) {
                ColumnType type = getColumnType().get();
                List<EntityType<?>> propertyTypes = type.getPropertyTypes();
                if(!propertyTypes.contains(propertyType)) {
                    final EntityType<?> firstPermissiblePropertyType = propertyTypes.get(0);
                    propertyField.coerceToEntityType(firstPermissiblePropertyType);

                }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.shared.csv.ColumnType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.