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

com.olapdb.obase.data.index.Elite Maven / Gradle / Ivy

The newest version!
package com.olapdb.obase.data.index;

import java.util.List;
import java.util.Vector;

public class Elite {
	private byte[] row;
	private List matchs = new Vector();
	private double score;

	public Elite(byte[] row){
		this.setRow(row) ;
	}

	public byte[] getRow() {
		return row;
	}

	public void setRow(byte[] row) {
		this.row = row;
	}

	public void addMatch(Find match){
		this.matchs.add(match);
	}

	public List getMatchs() {
		return matchs;
	}

	public void setScore(double value){
		this.score = value;
	}
	public double getScore(){
		return score;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy