Annotation Interface SqlQuotesUnknown
@Documented
@Retention(RUNTIME)
@Target({TYPE_USE,TYPE_PARAMETER})
@SubtypeOf({})
@DefaultQualifierInHierarchy
public @interface SqlQuotesUnknown
Represents the top of the SQL Quotes qualifier hierarchy. Used to denote a String of which the
 quoting is unknown. Using a SqlQuotesUnknown Strings within a SQL query may be, or lead to, a SQL
 injection vulnerability.
 
Common use cases include unsanitized user input.
- See the Checker Framework Manual:
- SQL Quotes Checker