io.virtdata.libbasics.shared.unary_string.Suffix Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package io.virtdata.libbasics.shared.unary_string;
import io.virtdata.annotations.Example;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.Function;
/**
* Add the specified prefix String to the input value and return the result.
*/
@ThreadSafeMapper
public class Suffix implements Function {
private String suffix;
@Example({"Suffix('--Fin')", "Append '--Fin' to every input value"})
public Suffix(String suffix) {
this.suffix = suffix;
}
@Override
public String apply(String s) {
return s + suffix;
}
}