eRqlEngine API documentation - http://www.wleklinski.de/rdf/

Uses of Class
eworks.eRQL.model.Value

Packages that use Value
eworks.eRQL.model   
 

Uses of Value in eworks.eRQL.model
 

Subclasses of Value in eworks.eRQL.model
 class Conjunction
          Represents a conjunction of subqueries.
 class Disjunction
          Represents a disjunction of subqueries.
 class DocumentQuery
          A specialized query class for socalled "document queries".
 class Junction
          Abstract base class for combining operators like a conjunction or a disjunction.
 class Literal
          Represents literal values.
 class PoiQuery
          A specialized query class for socalled "POI" ("Point of interest") queries.
 class Query
          Abstract base class for subqueries.
 class StatementQuery
          A specialized query class for socalled "statement queries".
 

Fields in eworks.eRQL.model declared as Value
protected  Value Query.value
           
protected  Value[] Junction.values
          The operands that are associated with this junction.
 

Methods in eworks.eRQL.model that return Value
 Value Value.compact()
          Compacts this value and returns the compacted value.
 Value StatementQuery.compact()
          Compacts this query and returns the result.
 Value Query.compact()
          Compacts this query and returns the result.
 Value Junction.compact()
          Compacts this junction and returns the result.
 Value DocumentQuery.compact()
          Compacts this query and returns the result.
 

Methods in eworks.eRQL.model with parameters of type Value
 void Junction.add(Value value)
          Adds a new value to this junction.
 

Constructors in eworks.eRQL.model with parameters of type Value
StatementQuery(Value value)
          Creates an statement query and encapsulated the given value.
Query(Value value)
          Creates an query and encapsulated the given value.
PoiQuery(Value value)
          Creates an POI query and encapsulated the given value.
Junction(Value[] values)
          Creates a new junction and initializes it with some values.
Junction(Value value)
          Creates a new junction and initializes it with a single value.
Junction(Value value1, Value value2)
          Creates a new junction and initializes it with two single values.
DocumentQuery(Value value)
          Creates an POI query and encapsulated the given value.
Disjunction(Value value)
          Creates a new disjunction and initializes it with a single value.
Disjunction(Value v1, Value v2)
          Creates a new dicjunction and initializes it with two values.
Conjunction(Value value)
          Creates a new conjunction and initializes it with a single value.
Conjunction(Value v1, Value v2)
          Creates a new conjunction and initializes it with two values.
 


eRqlEngine API documentation - http://www.wleklinski.de/rdf/