eu.aronnax.smartconstraints.parser.common.KeyValueDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartconstraints-parser-common Show documentation
Show all versions of smartconstraints-parser-common Show documentation
Not for public use. Common parser classes for SmartConstraints. (Clean Architecture)
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);
}
}