Class BasicGroup
- java.lang.Object
-
- org.eclipse.rdf4j.queryrender.builder.BasicGroup
-
- All Implemented Interfaces:
Group
,SupportsExpr
@Deprecated public class BasicGroup extends Object implements Group
Deprecated.useSparqlBuilder
instead.Internal class for representing a group within a query.
- Author:
- Michael Grove
-
-
Constructor Summary
Constructors Constructor Description BasicGroup(boolean theOptional)
Deprecated.Create a new BasicGroup
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
add(TupleExpr theExpr)
Deprecated.void
addAll(Collection<? extends TupleExpr> theTupleExprs)
Deprecated.void
addChild(Group theGroup)
Deprecated.void
addFilter(ValueExpr theExpr)
Deprecated.Add a Filter to this groupTupleExpr
expr()
Deprecated.Collection<StatementPattern>
getPatterns()
Deprecated.boolean
isEmpty()
Deprecated.boolean
isOptional()
Deprecated.void
removeChild(Group theGroup)
Deprecated.Remove a child from this groupint
size()
Deprecated.
-
-
-
Method Detail
-
addChild
public void addChild(Group theGroup)
Deprecated.
-
removeChild
public void removeChild(Group theGroup)
Deprecated.Remove a child from this group- Parameters:
theGroup
- the child to remove
-
addFilter
public void addFilter(ValueExpr theExpr)
Deprecated.Add a Filter to this group- Parameters:
theExpr
- the value filter to add
-
isEmpty
public boolean isEmpty()
Deprecated.
-
isOptional
public boolean isOptional()
Deprecated.- Specified by:
isOptional
in interfaceGroup
-
expr
public TupleExpr expr()
Deprecated.- Specified by:
expr
in interfaceSupportsExpr
-
add
public void add(TupleExpr theExpr)
Deprecated.
-
addAll
public void addAll(Collection<? extends TupleExpr> theTupleExprs)
Deprecated.
-
getPatterns
public Collection<StatementPattern> getPatterns()
Deprecated.
-
-