A Kotlin object declaration exposes a function to Java. Without and with `@JvmStatic`, how is the function represented and called from Java?object Config { fun load() {} @JvmStatic fun reload() {} }