All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uniscon.immutables.Wrapped Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
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