Package org.apache.stanbol.entityhub.query.sparql

Examples of org.apache.stanbol.entityhub.query.sparql.SparqlEndpointTypeEnum


        return type;
    }

    @Deprecated
    public final void setEndpointType(EndpointTypeEnum endpointType) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        setSparqlEndpointType(type);
    }
View Full Code Here


     */
    @Deprecated
    public static String createSparqlConstructQuery(SparqlFieldQuery query,
                                                    EndpointTypeEnum endpointType,
                                                    String... additionalFields) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        return org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils.createSparqlConstructQuery(
            query, type, additionalFields);
    }
View Full Code Here

    @Deprecated
    public static String createSparqlConstructQuery(SparqlFieldQuery query,
                                                    int limit,
                                                    EndpointTypeEnum endpointType,
                                                    String... additionalFields) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        return org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils.createSparqlConstructQuery(
            query,limit,type,additionalFields);

    }
View Full Code Here

     * @return the SPARQL query as String
     * @see org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils#createSparqlSelectQuery(org.apache.stanbol.entityhub.query.sparql.SparqlFieldQuery, SparqlEndpointTypeEnum)
     */
    @Deprecated
    public static String createSparqlSelectQuery(SparqlFieldQuery query, EndpointTypeEnum endpointType) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        return org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils.createSparqlSelectQuery(query, type);
    }
View Full Code Here

     */
    @Deprecated
    public static String createSparqlSelectQuery(SparqlFieldQuery query,
                                                 int limit,
                                                 EndpointTypeEnum endpointType) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        return org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils.createSparqlSelectQuery(query,limit,type);
    }
View Full Code Here

     */
    @Deprecated
    public static String createSparqlSelectQuery(SparqlFieldQuery query,
                                                 boolean includeFields,
                                                 EndpointTypeEnum endpointType) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        return org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils.createSparqlSelectQuery(query,includeFields,type);
    }
View Full Code Here

    @Deprecated
    public static String createSparqlSelectQuery(SparqlFieldQuery query,
                                                 boolean includeFields,
                                                 int limit,
                                                 EndpointTypeEnum endpointType) {
        SparqlEndpointTypeEnum type = endpointType == null ? null :
            SparqlEndpointTypeEnum.valueOf(endpointType.name());
        return org.apache.stanbol.entityhub.query.sparql.SparqlQueryUtils.createSparqlSelectQuery(query,includeFields,limit, type);

    }
View Full Code Here

TOP

Related Classes of org.apache.stanbol.entityhub.query.sparql.SparqlEndpointTypeEnum

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.