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

org.immutables.fixture.generics.MultimapSafeVarargs Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
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 {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy