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

org.apache.activemq.artemis.shaded.org.jgroups.util.LongTuple Maven / Gradle / Ivy

There is a newer version: 2.33.0
Show newest version
package org.apache.activemq.artemis.shaded.org.jgroups.util;

/**
 * A tuple with a long (primitive) first value
 * @author Bela Ban
 */
public class LongTuple {
    private final long val1;
    private final V    val2;

    public LongTuple(long val1, V val2) {
        this.val1=val1;
        this.val2=val2;
    }

    public long getVal1() {return val1;}
    public V    getVal2() {return val2;}

    public String toString() {
        return val1 + " : " + val2;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy