All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xxdb.data.BasicNanoTime Maven / Gradle / Ivy

Go to download

The messaging and data conversion protocol between Java and DolphinDB server

There is a newer version: 1.0.27
Show newest version
package com.xxdb.data;

import com.xxdb.io.ExtendedDataInput;

import java.io.IOException;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import java.time.temporal.Temporal;

/**
 * Corresponds to DolphinDB nanotime scalar.
 *
 */

public class BasicNanoTime extends BasicLong{
	private static DateTimeFormatter format = DateTimeFormatter.ofPattern("HH:mm:ss.SSSSSSSSS");

	public BasicNanoTime(LocalTime value){
		super(Utils.countNanoseconds(value));
	}

	public BasicNanoTime(ExtendedDataInput in) throws IOException {
		super(in);
	}

	protected BasicNanoTime(long value){
		super(value);
	}

	@Override
	public DATA_CATEGORY getDataCategory() {
		return DATA_CATEGORY.TEMPORAL;
	}

	@Override
	public DATA_TYPE getDataType() {
		return DATA_TYPE.DT_NANOTIME;
	}
	
	public LocalTime getNanoTime(){
		if(isNull())
			return null;
		else
			return Utils.parseNanoTime(getLong());
	}

	@Override
	public Temporal getTemporal() throws Exception {
		return getNanoTime();
	}
	
	@Override
	public String getString() {
		if(isNull())
			return "";
		else
			return getNanoTime().format(format);
	}
	
	@Override
	public boolean equals(Object o){
		if(! (o instanceof BasicNanoTime) || o == null)
			return false;
		else
			return getLong() == ((BasicNanoTime)o).getLong();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy