C# Class DynamicSPARQLSpace.SPARQL

Helps creating of SPARQL
Afficher le fichier Open project: Efimster/DynamicSPARQL

Méthodes publiques

Méthode Description
Bind ( string bind ) : Bind

Makes bind pattern

Exists ( ) : Exists

Makes a "EXISTS" filter expression

Exists ( string triple ) : Exists

Makes a "EXISTS" filter expression

Exists ( string s = null, string p = null, string o = null ) : Exists

Makes a "EXISTS" filter expression

Filter ( string filter ) : Filter

Makes filter graph pattern

Graph ( string IRI ) : Graph

Makes an NAMED GRAPH pattern

Group ( ) : Group

Makes a group graph pattern

Minus ( ) : Minus

Makes a "MINUS" filter expression

Minus ( string triple ) : Minus

Makes an "MINUS" filter expression

Minus ( string s = null, string p = null, string o = null ) : Minus

Makes a "MINUS" filter expression

NotExists ( ) : NotExists

Makes a "NOT EXISTS" filter expression

NotExists ( string triple ) : NotExists

Makes a "NOT EXISTS" filter expression

NotExists ( string s = null, string p = null, string o = null ) : NotExists

Makes a "NOT EXISTS" filter expression

Optional ( ) : Optional

Makes an optional graph pattern

Optional ( string triple ) : Optional

Makes an optional graph pattern

Optional ( string s = null, string p = null, string o = null ) : Optional

Makes an optional graph pattern

Prefix ( string prefix, string iri ) : Prefix

Makes prefix

ToString ( this group, bool autoQuotation, bool skipTriplesWithEmptyObject, bool mindAsterisk ) : string
Triple ( string triple ) : Triple

Makes triple

Triple ( string s = null, dynamic p = null, dynamic o = null ) : Triple

Makes triple

TripleChain ( ) : Group

Creates triple chain. Every object used as next triple subject

TripleChain ( string chain ) : Group

Creates triple chain. Every object used as next triple subject

Union ( ) : Union

Makes Union graph pattern

Union ( IWhereItem left = null, IWhereItem right = null ) : Union

Makes Union graph pattern

Method Details

Bind() public static méthode

Makes bind pattern
public static Bind ( string bind ) : Bind
bind string bind expression
Résultat Bind

Exists() public static méthode

Makes a "EXISTS" filter expression
public static Exists ( ) : Exists
Résultat Exists

Exists() public static méthode

Makes a "EXISTS" filter expression
public static Exists ( string triple ) : Exists
triple string first triple
Résultat Exists

Exists() public static méthode

Makes a "EXISTS" filter expression
public static Exists ( string s = null, string p = null, string o = null ) : Exists
s string Subject of first triple
p string Predicate of first triple
o string Object of first triple
Résultat Exists

Filter() public static méthode

Makes filter graph pattern
public static Filter ( string filter ) : Filter
filter string
Résultat Filter

Graph() public static méthode

Makes an NAMED GRAPH pattern
public static Graph ( string IRI ) : Graph
IRI string NAMED GRAPH IRI
Résultat Graph

Group() public static méthode

Makes a group graph pattern
public static Group ( ) : Group
Résultat Group

Minus() public static méthode

Makes a "MINUS" filter expression
public static Minus ( ) : Minus
Résultat Minus

Minus() public static méthode

Makes an "MINUS" filter expression
public static Minus ( string triple ) : Minus
triple string first triple
Résultat Minus

Minus() public static méthode

Makes a "MINUS" filter expression
public static Minus ( string s = null, string p = null, string o = null ) : Minus
s string Subject of first triple
p string Predicate of first triple
o string Object of first triple
Résultat Minus

NotExists() public static méthode

Makes a "NOT EXISTS" filter expression
public static NotExists ( ) : NotExists
Résultat NotExists

NotExists() public static méthode

Makes a "NOT EXISTS" filter expression
public static NotExists ( string triple ) : NotExists
triple string first triple
Résultat NotExists

NotExists() public static méthode

Makes a "NOT EXISTS" filter expression
public static NotExists ( string s = null, string p = null, string o = null ) : NotExists
s string Subject of first triple
p string Predicate of first triple
o string Object of first triple
Résultat NotExists

Optional() public static méthode

Makes an optional graph pattern
public static Optional ( ) : Optional
Résultat Optional

Optional() public static méthode

Makes an optional graph pattern
public static Optional ( string triple ) : Optional
triple string first triple
Résultat Optional

Optional() public static méthode

Makes an optional graph pattern
public static Optional ( string s = null, string p = null, string o = null ) : Optional
s string Subject of first triple
p string Predicate of first triple
o string Object of first triple
Résultat Optional

Prefix() public static méthode

Makes prefix
public static Prefix ( string prefix, string iri ) : Prefix
prefix string prefix
iri string IRI
Résultat Prefix

ToString() public static méthode

public static ToString ( this group, bool autoQuotation, bool skipTriplesWithEmptyObject, bool mindAsterisk ) : string
group this
autoQuotation bool
skipTriplesWithEmptyObject bool
mindAsterisk bool
Résultat string

Triple() public static méthode

Makes triple
public static Triple ( string triple ) : Triple
triple string triple string
Résultat Triple

Triple() public static méthode

Makes triple
public static Triple ( string s = null, dynamic p = null, dynamic o = null ) : Triple
s string Subject
p dynamic Predicate
o dynamic Object
Résultat Triple

TripleChain() public static méthode

Creates triple chain. Every object used as next triple subject
public static TripleChain ( ) : Group
Résultat Group

TripleChain() public static méthode

Creates triple chain. Every object used as next triple subject
public static TripleChain ( string chain ) : Group
chain string Triple parts
Résultat Group

Union() public static méthode

Makes Union graph pattern
public static Union ( ) : Union
Résultat Union

Union() public static méthode

Makes Union graph pattern
public static Union ( IWhereItem left = null, IWhereItem right = null ) : Union
left IWhereItem Left part of Union pattern
right IWhereItem Right part of Union pattern
Résultat Union