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

io.quarkiverse.jackson.jq.deployment.JacksonJqVersionConverter Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.jackson.jq.deployment;

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

import io.quarkus.runtime.annotations.RegisterForReflection;
import net.thisptr.jackson.jq.Version;

@RegisterForReflection
public class JacksonJqVersionConverter implements Converter {
    @Override
    public Version convert(String value) throws IllegalArgumentException, NullPointerException {
        return Version.valueOf(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy