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

io.avaje.prism.GenerateUtils Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
package io.avaje.prism;

import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.SOURCE;

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

/** Place on a Type/Package to have the Prism Generator create a helper class */
@Retention(SOURCE)
@Target({TYPE, PACKAGE})
public @interface GenerateUtils {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy