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

com.alibaba.middleware.ushura.Pair Maven / Gradle / Ivy

package com.alibaba.middleware.ushura;

public class Pair {
    private T item;
    private double weight;

    public Pair(T item,double weight){
        this.item = item;
        this.weight = weight;
    }

    public T item(){
        return item;
    }

    public double weight(){
        return weight;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy