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

io.polyapi.plugin.model.generation.KeyValuePair Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.polyapi.plugin.model.generation;

import static io.polyapi.plugin.utils.StringUtils.toCamelCase;
import static java.lang.String.format;

public record KeyValuePair(K key, V value) {

    @Override
    public String toString() {
        return format("%s %s", value.toString(), toCamelCase(key.toString()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy