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

com.synerset.unitility.quarkus.DefaultParsingFactory Maven / Gradle / Ivy

Go to download

The Java Physics Units of Measure Library - Unitility, Quarkus extension. This module integrates unitility-core and unitility-jackson. It provides a preconfigured Jackson module and JakartaParamProvider, enabling automatic serialization/deserialization for all supported physical quantity types. This configuration is automatically included through the Jandex index.

There is a newer version: 2.4.2
Show newest version
package com.synerset.unitility.quarkus;

import jakarta.inject.Qualifier;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Qualifier
@Retention(RUNTIME)
@Target({METHOD, FIELD, PARAMETER, TYPE})
public @interface DefaultParsingFactory {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy