org.immutables.fixture.generics.MultimapSafeVarargs 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.generics;
import com.google.common.collect.Multimap;
import org.immutables.value.Value;
@Value.Enclosing
public interface MultimapSafeVarargs {
@Value.Immutable
interface ParamKey {
Multimap, String> vals();
}
@Value.Immutable
interface ParamVal {
Multimap> vals();
}
@Value.Immutable
interface ParamBoth {
Multimap, Val> vals();
}
interface Val {}
}