Home | History | Annotate | Download | only in producers

Lines Matching defs:Type

27  * a {@link ListenableFuture}, then the parameter type of the future is bound to the value that the
28 * future provides; otherwise, the return type is bound to the returned value. The production
37 /** The type of binding into which the return type of the annotated method contributes. */
38 enum Type {
40 * The method is the only one which can produce the value for the specified type. This is the
46 * The method's resulting type forms the generic type argument of a {@code Set<T>}, and the
53 * Like {@link #SET}, except the method's return type is either {@code Set<T>} or
61 * The method's return type forms the type argument for the value of a
69 Type type() default Type.UNIQUE;