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

io.quarkus.devtools.codestarts.DataKey Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.devtools.codestarts;

import java.util.Locale;

public interface DataKey {
    default String key() {
        return this.toString().toLowerCase(Locale.ROOT).replace('_', '-');
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy