How do I create a static import using JavaPoet?
The code I'm trying to generate looks like this:
import static com.test.Types.*;
How do I create a static import using JavaPoet?
The code I'm trying to generate looks like this:
import static com.test.Types.*;
For the record: static import
is supported since 1.5.0
See JavaFileTest for example usages.
There is no way, but there is an open issue related to it: https://github.com/square/javapoet/issues/73