Annotation Type InvalidFormat
- 
@Documented @Retention(RUNTIME) @Target({TYPE_USE,TYPE_PARAMETER}) @SubtypeOf(UnknownFormat.class) public @interface InvalidFormatThis annotation, attached to aStringtype, indicates that the string is not a legal format string. Passing the string toFormatter.formator similar methods will lead to the exception message indicated in the annotation's value.- See the Checker Framework Manual:
 - Format String Checker
 
 
- 
- 
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringvalueUsing a value of the annotated type as the first argument toFormatter.formator similar methods will lead to this exception message. 
 -