org.immutables.fixture.builder.functional.AttributeBuilderValueI 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.functional;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;
import org.immutables.fixture.builder.attribute_builders.FirstPartyImmutable;
import org.immutables.fixture.builder.attribute_builders.FirstPartyImmutableWithDifferentStyle;
import org.immutables.fixture.builder.attribute_builders.ThirdPartyImmutable;
import org.immutables.fixture.builder.attribute_builders.ThirdPartyImmutableWithPrimitive;
public interface AttributeBuilderValueI {
FirstPartyImmutable firstPartyImmutable();
FirstPartyImmutableWithDifferentStyle firstPartyImmutableWithDifferentStyle();
List firstPartyImmutableList();
ThirdPartyImmutable thirdPartyImmutable();
List thirdPartyImmutableList();
ThirdPartyImmutableWithPrimitive thirdPartyImmutableWithPrimitive();
Optional optionalFirstPartyImmutable();
@Nullable
FirstPartyImmutable nullableFirstPartyImmutable();
}