![JAR search and dependency download from the Maven repository](/logo.png)
com.uniscon.immutables.Wrapped 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;
@Value.Style(
// Detect names starting with underscore
typeAbstract = "_*",
// Generate without any suffix, just raw detected name
typeImmutable = "*",
// Make generated it public, leave underscored as package private
visibility = Value.Style.ImplementationVisibility.PUBLIC,
// Seems unnecessary to have builder or superfluous copy method
defaults = @Value.Immutable(builder = false, copy = false))
public @interface Wrapped {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy