The static initializer is a static {} block of code inside java class, and run only one time before the constructor or main method is called.
Is it possible to initialize an companion object before the init block in a Kotlin class? If so, how? If …
oop static kotlin companion-object static-initializerI've an interface implemented by classes that perform a file processing, say searching or whatever. public interface FileProcessorInterface { public void …
java factory-method static-initializer