private static field used internally, see decompil...
# getting-started
m
private static field used internally, see decompiled to Java:
Copy code
public final class Foo {
   @NotNull private static final String bar = "bar";
   public static final Foo INSTANCE;

   static { new Foo(); }

   private Foo() {
      INSTANCE = (Foo)this;
      bar = "bar";
   }

   @NotNull public final String getBar() {
      return bar;
   }
}