org.immutables.fixture.builder.attribute_builders.FirstPartyImmutableWithDifferentStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
package org.immutables.fixture.builder.attribute_builders;
import org.immutables.value.Value.Immutable;
import org.immutables.value.Value.Style;
@Immutable
@Style(
builder = "getTheBuilder",
build = "doIIT",
from = "makeDaCopy",
typeBuilder = "Abonabon"
)
public abstract class FirstPartyImmutableWithDifferentStyle {
public abstract String value();
}