com.alibaba.middleware.ushura.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas-sdk Show documentation
Show all versions of eas-sdk Show documentation
SDK for PAI-EAS online inference services
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;
}
}