Annotation Interface DoubleVal
@Documented
@Retention(RUNTIME)
@Target({TYPE_PARAMETER,TYPE_USE})
@SubtypeOf(UnknownVal.class)
public @interface DoubleVal
An annotation indicating the possible values for a double or float type. If an expression's type
 has this annotation, then at run time, the expression evaluates to one of the annotation's
 arguments.
 
Annotation for values
- See the Checker Framework Manual:
- Constant Value Checker
- 
Required Element SummaryRequired ElementsModifier and TypeRequired ElementDescriptiondouble[]The values that the expression might evaluate to.
- 
Element Details- 
valuedouble[] valueThe values that the expression might evaluate to.
 
-