![JAR search and dependency download from the Maven repository](/logo.png)
com.uniscon.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
package com.uniscon.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