Importing a class statically allows you to use its ``++public static++`` members without qualifying them with the class name. That can be handy, but if you import too many classes statically, your code can become confusing and difficult to maintain.
=== on 5 May 2021, 23:43:52 Caleb Ciampaglia wrote:
Consider ignoring static imports of all capital letters (constants) when processing this rule. It can be less confusing to statically import constants from other classes than to specify the class name first. This is especially true when writing code that use Jooq (or other libraries) which regularly use constants for defining tables, columns, and other DB objects.