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

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

package com.mercateo.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 - 2024 Weber Informatics LLC | Privacy Policy