public class J { private final String result; private J(String result) { this.result = result; } private String getResult() { return result; } }