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

com.xxdb.data.BasicUuidVector 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 java.io.IOException;
import java.util.List;

import com.xxdb.io.ExtendedDataInput;
import com.xxdb.io.Long2;

public class BasicUuidVector extends BasicInt128Vector {
	
	public BasicUuidVector(int size){
		super(size);
	}
	
	public BasicUuidVector(List list){
		super(list);
	}
	
	public BasicUuidVector(Long2[] array){
		super(array);
	}
	
	protected BasicUuidVector(DATA_FORM df, int size){
		super(df, size);
	}
	
	protected BasicUuidVector(DATA_FORM df, ExtendedDataInput in) throws IOException{
		super(df, in);
	}
	
	public Scalar get(int index){
		return new BasicUuid(values[index].high, values[index].low);
	}
	
	@Override
	public DATA_TYPE getDataType() {
		return Entity.DATA_TYPE.DT_UUID;
	}
	
	@Override
	public Class getElementClass(){
		return BasicUuid.class;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy