Examples of OWLDataRange


Examples of org.semanticweb.owl.model.OWLDataRange

    final protected OWLDescription translateRestriction(URI mainNode) throws OWLException {
        URI fillerObject = getResourceObject(mainNode, getFillerTriplePredicate(), true);
        if(fillerObject == null) {
            throw new MalformedDescriptionException(getFillerTriplePredicate() + " is not present");
        }
        OWLDataRange dataRange = getConsumer().translateDataRange(fillerObject);
        return createRestriction(translateOnProperty(mainNode), dataRange);
    }
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataAllValuesFrom() throws ParseException {
        OWLDataPropertyExpression prop = null;
        OWLDataRange dataRange = null;
        jj_consume_token(DATAALLVALUESFROM);
        jj_consume_token(OPENPAR);
        prop = DataPropertyExpression();
        dataRange = DataRange();
        jj_consume_token(CLOSEPAR);
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataSomeValuesFrom() throws ParseException {
        OWLDataPropertyExpression prop = null;
        OWLDataRange dataRange = null;
        jj_consume_token(DATASOMEVALUESFROM);
        jj_consume_token(OPENPAR);
        prop = DataPropertyExpression();
        dataRange = DataRange();
        jj_consume_token(CLOSEPAR);
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

    }

    final public OWLClassExpression DataMinCardinality() throws ParseException {
        int cardinality = 0;
        OWLDataPropertyExpression prop = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAMINCARDINALITY);
        jj_consume_token(OPENPAR);
        cardinality = Cardinality();
        prop = DataPropertyExpression();
        switch (jj_ntk == -1 ? jj_ntk_f() : jj_ntk) {
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

    final public OWLClassExpression DataExactCardinality()
            throws ParseException {
        int cardinality = 0;
        OWLDataPropertyExpression prop = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAEXACTCARDINALITY);
        jj_consume_token(OPENPAR);
        cardinality = Cardinality();
        prop = DataPropertyExpression();
        switch (jj_ntk == -1 ? jj_ntk_f() : jj_ntk) {
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

    }

    final public OWLClassExpression DataMaxCardinality() throws ParseException {
        int cardinality = 0;
        OWLDataPropertyExpression prop = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAMAXCARDINALITY);
        jj_consume_token(OPENPAR);
        cardinality = Cardinality();
        prop = DataPropertyExpression();
        switch (jj_ntk == -1 ? jj_ntk_f() : jj_ntk) {
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

    }

    final public OWLDatatypeDefinitionAxiom DatatypeDefinitionAxiom()
            throws ParseException {
        OWLDatatype datatype;
        OWLDataRange dr;
        Set<OWLAnnotation> axAnnos;
        jj_consume_token(DATATYPEDEFINITION);
        jj_consume_token(OPENPAR);
        axAnnos = AxiomAnnotationSet();
        datatype = DatatypeIRI();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

        }
        throw new Error("Missing return statement in function");
    }

    final public OWLDataRange DataRange() throws ParseException {
        OWLDataRange rng;
        switch (jj_ntk == -1 ? jj_ntk_f() : jj_ntk) {
            case FULLIRI:
            case PNAME_LN: {
                rng = DatatypeIRI();
                break;
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

        }
        throw new Error("Missing return statement in function");
    }

    final public OWLDataRange DataComplementOf() throws ParseException {
        OWLDataRange rng;
        jj_consume_token(DATACOMPLEMENTOF);
        jj_consume_token(OPENPAR);
        rng = DataRange();
        jj_consume_token(CLOSEPAR);
        {
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataRange

    }

    final public OWLDataRange DataOneOf() throws ParseException {
        Set<OWLLiteral> values = new HashSet<OWLLiteral>();
        OWLLiteral con = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAONEOF);
        jj_consume_token(OPENPAR);
        label_6: while (true) {
            con = Literal();
            values.add(con);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.