@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface AlgebraicFinal
This annotation is to be used on a Groovy method which
is part of an Algebraic UDF to indicate that it will
act as the exec method of the 'Final' class of the UDF.
The value of the annotation is the name of the Algebraic UDF
it belongs to.
The annotated method MUST NOT accept any parameters.
Its return value will be that of the Algebraic UDF.