Class ConverterSupport


  • public class ConverterSupport
    extends Object
    This small utility class holds constants relevant to configuration converters.
    • Field Detail

      • DEFAULT_SMALLRYE_CONVERTER_PRIORITY

        public static final int DEFAULT_SMALLRYE_CONVERTER_PRIORITY
        Default Converter priority with value 100 to be used for all discovered converters in case when no Priority annotation is available on the converter class.
        See Also:
        Constant Field Values
      • DEFAULT_QUARKUS_CONVERTER_PRIORITY

        public static final int DEFAULT_QUARKUS_CONVERTER_PRIORITY
        Default Converter priority with value 200 to be used for all Quarkus converters. The reason why Quarkus priority is higher than a default one, which is 100, is because Quarkus converters should be used even if some third-party JAR bundles its own converters, unless these 3rd party converters priority is explicitly higher to override Quarkus ones. This way we can be sure that things have a good chance of consistent interoperability.
        See Also:
        Constant Field Values