
io.github.andriamarosoa.functional.interfaces.Parameter0 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functional Show documentation
Show all versions of functional Show documentation
Demo project for Spring Boot
package io.github.andriamarosoa.functional.interfaces;
@FunctionalInterface
public interface Parameter0 extends Function{
Object run(Caller a);
@Override
default Object run(Object ... arg){
return this.run((Caller)arg[0]);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy