com.xxdb.data.BasicTimeMatrix Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-java Show documentation
Show all versions of api-java Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.data;
import java.io.IOException;
import java.time.LocalTime;
import java.util.List;
import com.xxdb.io.ExtendedDataInput;
/**
*
* Corresponds to DolphinDB time matrix.
*
*/
public class BasicTimeMatrix extends BasicIntMatrix{
public BasicTimeMatrix(int rows, int columns){
super(rows, columns);
}
public BasicTimeMatrix(int rows, int columns, List listOfArrays) throws Exception {
super(rows,columns, listOfArrays);
}
public BasicTimeMatrix(ExtendedDataInput in) throws IOException {
super(in);
}
public void setTime(int row, int column, LocalTime value){
setInt(row, column, Utils.countMilliseconds(value));
}
public LocalTime getTime(int row, int column){
return Utils.parseTime(getInt(row, column));
}
@Override
public Scalar get(int row, int column) {
return new BasicTime(getInt(row, column));
}
@Override
public DATA_CATEGORY getDataCategory() {
return DATA_CATEGORY.TEMPORAL;
}
@Override
public DATA_TYPE getDataType() {
return DATA_TYPE.DT_TIME;
}
@Override
public Class> getElementClass(){
return BasicTime.class;
}
}