
org.slieb.soy.model.DefaultLazyResultWithOriginalToString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soy-annotations Show documentation
Show all versions of soy-annotations Show documentation
Soy utilities to easily convert and and render classes with soy
templates.
The newest version!
package org.slieb.soy.model;
import javax.annotation.ParametersAreNonnullByDefault;
import java.util.function.Function;
@ParametersAreNonnullByDefault
public class DefaultLazyResultWithOriginalToString
extends DefaultLazyResult {
public DefaultLazyResultWithOriginalToString(A object,
Function converter) {
super(object, converter);
}
@Override
public String toString() {
return object.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy