Call the method in the jar package by the method name

I imported an external jar in katalon. How can I call the specific method in the jar by calling only the method name?

Hello,

you can do this only if the method is static. Then, you must use static import. Example:

import static java.lang.String.format

println format("Static %s test.", "import")

thanks,its help for me