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

io.quarkus.runtime.annotations.ConfigDocIgnore Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime.annotations;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.SOURCE;

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

/**
 * A marker indicating that the configuration method should be ignored
 * when generating documentation.
 */
@Documented
@Retention(SOURCE)
@Target({ METHOD })
public @interface ConfigDocIgnore {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy