eu.larkc.shared
Class SampleQueries

java.lang.Object
  extended by eu.larkc.shared.SampleQueries

public class SampleQueries
extends java.lang.Object

Helper class which holds some example queries used in the tests.

Author:
Christoph Fuchs

Field Summary
static java.lang.String ASK_ALL_TRIPLES
          Ask all triples ("ASK WHERE {?s ?p ?o}")
static java.lang.String CONSTRUCT_ALL_TRIPLES
          Constructs all triples ( CONSTRUCT {?s ?p ?o} WHERE {?s ?p ?o})
static java.lang.String LUBM
          Simple query from LUBM
static java.lang.String LUBM_CONSTRUCT
          Simple construct query from LUBM
static java.lang.String LUBM_ONEJOIN_CONSTRUCT
          Simple construct query from LUBM with a single join
static java.lang.String PASS_ALL_CONSTRUCT
          TODO: Describe this query
static java.lang.String SELECT_ALL_TRIPLES
          Selects all triples (SELECT * WHERE {?s ?p ?o})
static java.lang.String SIMPLE_CONSTRUCT_WEB
          Simple query that can be answered with info from the web
static java.lang.String SIMPLE_LUBM_CONSTRUCT
          Very simple construct query from LUBM
static java.lang.String SIMPLE_WEB
          Simple query that can be answered with info from the web
static java.lang.String WHO_KNOWS_FRANK
          Simple query which looks for a person who knows Frank van Harmelen
static java.lang.String WHO_KNOWS_TIM_BERNERS_LEE
          Simple query which looks for a person who knows Sir Tim Berners Lee
 
Constructor Summary
SampleQueries()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PASS_ALL_CONSTRUCT

public static final java.lang.String PASS_ALL_CONSTRUCT
TODO: Describe this query

See Also:
Constant Field Values

LUBM

public static java.lang.String LUBM
Simple query from LUBM


LUBM_CONSTRUCT

public static java.lang.String LUBM_CONSTRUCT
Simple construct query from LUBM


LUBM_ONEJOIN_CONSTRUCT

public static java.lang.String LUBM_ONEJOIN_CONSTRUCT
Simple construct query from LUBM with a single join


SIMPLE_LUBM_CONSTRUCT

public static java.lang.String SIMPLE_LUBM_CONSTRUCT
Very simple construct query from LUBM


WHO_KNOWS_FRANK

public static java.lang.String WHO_KNOWS_FRANK
Simple query which looks for a person who knows Frank van Harmelen


SIMPLE_WEB

public static java.lang.String SIMPLE_WEB
Simple query that can be answered with info from the web


SIMPLE_CONSTRUCT_WEB

public static java.lang.String SIMPLE_CONSTRUCT_WEB
Simple query that can be answered with info from the web


WHO_KNOWS_TIM_BERNERS_LEE

public static final java.lang.String WHO_KNOWS_TIM_BERNERS_LEE
Simple query which looks for a person who knows Sir Tim Berners Lee

See Also:
Constant Field Values

SELECT_ALL_TRIPLES

public static final java.lang.String SELECT_ALL_TRIPLES
Selects all triples (SELECT * WHERE {?s ?p ?o})

See Also:
Constant Field Values

CONSTRUCT_ALL_TRIPLES

public static final java.lang.String CONSTRUCT_ALL_TRIPLES
Constructs all triples ( CONSTRUCT {?s ?p ?o} WHERE {?s ?p ?o})

See Also:
Constant Field Values

ASK_ALL_TRIPLES

public static final java.lang.String ASK_ALL_TRIPLES
Ask all triples ("ASK WHERE {?s ?p ?o}")

See Also:
Constant Field Values
Constructor Detail

SampleQueries

public SampleQueries()