com.deliveredtechnologies.rulebook.annotation.When Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rulebook-core Show documentation
Show all versions of rulebook-core Show documentation
A simple and intuitive rules abstraction for Java
package com.deliveredtechnologies.rulebook.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* When marks a method as a condition.
*/
@Retention(RUNTIME)
@Target(METHOD)
public @interface When {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy