com.github.paulosalonso.spel.builder.common.BuiltInMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spel-builder Show documentation
Show all versions of spel-builder Show documentation
A facilitator for creating Spring expressions (SpEL).
The newest version!
package com.github.paulosalonso.spel.builder.common;
import com.github.paulosalonso.spel.builder.common.Method;
public abstract class BuiltInMethod extends Method {
@Override
public String getPrefix() {
return "";
}
}