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

com.mageddo.graal.reflection.configuration.RuntimeReflection Maven / Gradle / Ivy

package com.mageddo.graal.reflection.configuration;

import java.lang.annotation.*;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.PACKAGE})
public @interface RuntimeReflection {

	boolean allDeclaredConstructors() default false;

	boolean allPublicConstructors() default false;

	boolean allPublicFields() default false;

	boolean allPublicMethods() default false;

	boolean allDeclaredMethods() default false;

	boolean allDeclaredFields() default false;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy