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

com.freemanan.kubernetes.config.util.Pair Maven / Gradle / Ivy

The newest version!
package com.freemanan.kubernetes.config.util;

/**
 * @author Freeman
 */
public record Pair(K key, V value) {

    public static  Pair of(K key, V value) {
        return new Pair<>(key, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy