Lines Matching full:snack
5667 MapBinder<String, Snack> mapbinder
5668 = MapBinder.newMapBinder(binder(), String.class, Snack.class);
5675 <p>With this binding, a {@link Map}{@code <String, Snack>} can now be
5680 public SnackMachine(Map<String, Snack> snacks) { ... }
5688 public SnackMachine(Map<String, Provider<Snack>> snackProviders) { ... }
5693 create their own {@code MapBinder<String, Snack>}, and to each contribute
5749 returns a key of <code>Map<String, Snack></code>, then this will always return a
5761 returns a key of <code>Map<String, Snack></code>, then this will always return a
5762 <code>TypeLiteral<Snack></code>.]]>
5777 key of <code>Map<String, Snack></code>, then this will always return a list of type
5778 <code>List<Map.Entry<String, Binding<Snack>>></code>.]]>
5819 <code>MapBinderBinding<Map<String, Snack>></code>
5937 Multibinder<Snack> multibinder
5938 = Multibinder.newSetBinder(binder(), Snack.class);
5945 <p>With this binding, a {@link Set}{@code <Snack>} can now be injected:
5949 public SnackMachine(Set<Snack> snacks) { ... }
5954 to both create their own {@code Multibinder<Snack>}, and to each contribute