com.mercateo.immutables.Wrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of default-immutables Show documentation
Show all versions of default-immutables Show documentation
Default styles for Immutables
The newest version!
package com.mercateo.immutables;
import org.immutables.value.Value;
public abstract class Wrapper {
@Value.Parameter
public abstract T value();
@Override
public String toString() {
return getClass().getSimpleName() + "{" + value() + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy