1 2 3 4 5 6 7 8 9 10 11
class ConstructorInner { static class Inner { @java.lang.SuppressWarnings("all") private Inner() { } @java.lang.SuppressWarnings("all") public static ConstructorInner.Inner of() { return new ConstructorInner.Inner(); } } }