Package org.ehrbase.client.aql.funtion
Interface Function
-
- All Known Implementing Classes:
AbstractFunction
public interface Function- Author:
- Stefan Spiska
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static AbstractFunction<Integer>avg(SelectAqlField<?> field)static AbstractFunction<Integer>avg(SelectAqlField<?> field, String as)static AbstractFunction<Integer>count(SelectAqlField<?> field)static AbstractFunction<Integer>count(SelectAqlField<?> field, String as)List<SelectAqlField<?>>getParameters()static AbstractFunction<Integer>max(SelectAqlField<?> field)static AbstractFunction<Integer>max(SelectAqlField<?> field, String as)static AbstractFunction<Integer>min(SelectAqlField<?> field)static AbstractFunction<Integer>min(SelectAqlField<?> field, String as)
-
-
-
Method Detail
-
getParameters
List<SelectAqlField<?>> getParameters()
-
count
static AbstractFunction<Integer> count(SelectAqlField<?> field, String as)
-
count
static AbstractFunction<Integer> count(SelectAqlField<?> field)
-
max
static AbstractFunction<Integer> max(SelectAqlField<?> field, String as)
-
max
static AbstractFunction<Integer> max(SelectAqlField<?> field)
-
min
static AbstractFunction<Integer> min(SelectAqlField<?> field, String as)
-
min
static AbstractFunction<Integer> min(SelectAqlField<?> field)
-
avg
static AbstractFunction<Integer> avg(SelectAqlField<?> field, String as)
-
avg
static AbstractFunction<Integer> avg(SelectAqlField<?> field)
-
-