Class UDTFTopK
- java.lang.Object
-
- org.apache.iotdb.commons.udf.builtin.UDTFSelectK
-
- org.apache.iotdb.commons.udf.builtin.UDTFTopK
-
- All Implemented Interfaces:
org.apache.iotdb.udf.api.UDF,org.apache.iotdb.udf.api.UDTF
public class UDTFTopK extends UDTFSelectK
-
-
Constructor Summary
Constructors Constructor Description UDTFTopK()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidconstructPQ()protected voidtransformDouble(long time, double value)protected voidtransformFloat(long time, float value)protected voidtransformInt(long time, int value)protected voidtransformLong(long time, long value)protected voidtransformString(long time, java.lang.String value)-
Methods inherited from class org.apache.iotdb.commons.udf.builtin.UDTFSelectK
beforeStart, terminate, transform, validate
-
-
-
-
Method Detail
-
constructPQ
protected void constructPQ() throws org.apache.iotdb.udf.api.exception.UDFInputSeriesDataTypeNotValidException- Specified by:
constructPQin classUDTFSelectK- Throws:
org.apache.iotdb.udf.api.exception.UDFInputSeriesDataTypeNotValidException
-
transformInt
protected void transformInt(long time, int value)- Specified by:
transformIntin classUDTFSelectK
-
transformLong
protected void transformLong(long time, long value)- Specified by:
transformLongin classUDTFSelectK
-
transformFloat
protected void transformFloat(long time, float value)- Specified by:
transformFloatin classUDTFSelectK
-
transformDouble
protected void transformDouble(long time, double value)- Specified by:
transformDoublein classUDTFSelectK
-
transformString
protected void transformString(long time, java.lang.String value)- Specified by:
transformStringin classUDTFSelectK
-
-