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

eu.aronnax.smartconstraints.parser.common.KeyValueDto Maven / Gradle / Ivy

The newest version!
package eu.aronnax.smartconstraints.parser.common;

record KeyValueDto(String key, V value) {
    public  KeyValueDto newWithValue(NV newValue) {
        return new KeyValueDto<>(this.key, newValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy