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

com.volcengine.ark.runtime.utils.Pair Maven / Gradle / Ivy

There is a newer version: 0.1.144
Show newest version
package com.volcengine.ark.runtime.utils;

public class Pair {
    private X name;
    private Y value;

    public Pair(X name, Y value) {
        this.setName(name);
        this.setValue(value);
    }

    private void setName(X name) {
        this.name = name;
    }

    private void setValue(Y value) {
        this.value = value;
    }

    public X getName() {
        return this.name;
    }

    public Y getValue() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy