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

fr.laas.fape.planning.util.Pair Maven / Gradle / Ivy

package fr.laas.fape.planning.util;

import lombok.Data;

@Data public class Pair {

    public T value1;
    public V value2;

    public Pair(T v1, V v2) {
        this.value1 = v1;
        this.value2 = v2;
    }

    @Override
    public String toString() {
        return "["+value1 + ","+value2+"]";
    }
    
    public static  Pair pair(T v1, V v2) { return new Pair<>(v1,v2); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy