org.jdice.calc.SingletonExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcalc Show documentation
Show all versions of jcalc Show documentation
Fluent Java API for easier work with numbers, writing formula and calculations in Java.
The newest version!
package org.jdice.calc;
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;
/**
* Annotation properties for {@link NumConverter}, {@link Operator}, {@link Function} implementation which
* provide that only one instance of implementation can be instantiate.
*
* @author Davor Sauer
*
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(value=ElementType.TYPE)
public @interface SingletonExtension {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy