Class ExtractionClause
- java.lang.Object
-
- org.ametys.plugins.extraction.component.ExtractionClause
-
public class ExtractionClause extends Object
Object representing an extraction join information
-
-
Constructor Summary
Constructors Constructor Description ExtractionClause()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addGroup(ExtractionClauseGroup group)
Add a group to the joinString
getExpression()
Retrieves the join expressionList<ExtractionClauseGroup>
getGroups()
Retrieves the join groupsvoid
setExpression(String expression)
Set the join expression
-
-
-
Constructor Detail
-
ExtractionClause
public ExtractionClause()
-
-
Method Detail
-
getExpression
public String getExpression()
Retrieves the join expression- Returns:
- the expression
-
setExpression
public void setExpression(String expression)
Set the join expression- Parameters:
expression
- the expression to set
-
getGroups
public List<ExtractionClauseGroup> getGroups()
Retrieves the join groups- Returns:
- the groups
-
addGroup
public void addGroup(ExtractionClauseGroup group)
Add a group to the join- Parameters:
group
- the group to add
-
-