com.querydsl.core.annotations.Immutable Maven / Gradle / Ivy
package com.querydsl.core.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* {@code Immutable} marks a class as immutable
*
* @author Jan-Willem Gmelig Meyling
*/
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface Immutable {}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy