Package org.ehrbase.aql.dto.select
Class FunctionDto
- java.lang.Object
-
- org.ehrbase.aql.dto.select.FunctionDto
-
- All Implemented Interfaces:
SelectStatementDto
public class FunctionDto extends Object implements SelectStatementDto
- Author:
- Stefan Spiska
-
-
Constructor Summary
Constructors Constructor Description FunctionDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)AQLFunctiongetAqlFunction()StringgetName()List<SelectStatementDto>getParameters()inthashCode()voidsetAqlFunction(AQLFunction aqlFunction)voidsetName(String name)voidsetParameters(List<SelectStatementDto> parameters)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getAqlFunction
public AQLFunction getAqlFunction()
-
setAqlFunction
public void setAqlFunction(AQLFunction aqlFunction)
-
getParameters
public List<SelectStatementDto> getParameters()
-
setParameters
public void setParameters(List<SelectStatementDto> parameters)
-
-