Lines Matching full:snack
5567 MapBinder<String, Snack> mapbinder
5568 = MapBinder.newMapBinder(binder(), String.class, Snack.class);
5575 <p>With this binding, a {@link Map}{@code <String, Snack>} can now be
5580 public SnackMachine(Map<String, Snack> snacks) { ... }
5588 public SnackMachine(Map<String, Provider<Snack>> snackProviders) { ... }
5593 create their own {@code MapBinder<String, Snack>}, and to each contribute
5649 returns a key of <code>Map<String, Snack></code>, then this will always return a
5661 returns a key of <code>Map<String, Snack></code>, then this will always return a
5662 <code>TypeLiteral<Snack></code>.]]>
5677 key of <code>Map<String, Snack></code>, then this will always return a list of type
5678 <code>List<Map.Entry<String, Binding<Snack>>></code>.]]>
5719 <code>MapBinderBinding<Map<String, Snack>></code>
5837 Multibinder<Snack> multibinder
5838 = Multibinder.newSetBinder(binder(), Snack.class);
5845 <p>With this binding, a {@link Set}{@code <Snack>} can now be injected:
5849 public SnackMachine(Set<Snack> snacks) { ... }
5854 to create their own {@code Multibinder<Snack>}, and to each contribute