org.immutables.fixture.jdkonly.NoLocalVariablesOverlapping 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.jdkonly;
import org.immutables.value.Value;
import java.util.List;
import java.util.Map;
@Value.Immutable
@Value.Style(jdkOnly = true)
public abstract class NoLocalVariablesOverlapping {
public abstract Map getEntry();
public abstract Map getK();
public abstract Map getV();
public abstract List getElements();
}