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

io.smallrye.config.ConfigValueConverter Maven / Gradle / Ivy

package io.smallrye.config;

import org.eclipse.microprofile.config.spi.Converter;

/**
 * This Converter should not be used directly. This is only used as a marker to use to return a ConfigValue directly
 * after a configuration property lookup.
 */
class ConfigValueConverter implements Converter {
    static final Converter CONFIG_VALUE_CONVERTER = new ConfigValueConverter();

    @Override
    public ConfigValue convert(final String value) {
        throw new IllegalArgumentException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy