
ru.progrm_jarvis.javacommons.annotation.Any Maven / Gradle / Ivy
package ru.progrm_jarvis.javacommons.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Target;
/**
* Marker indicating that the annotated type parameter does not matter
* thus any unchecked casts from this type to any other are safe and never lead to unspecified behaviour.
*/
@Inherited
@Documented
@Target(ElementType.TYPE_PARAMETER)
public @interface Any {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy