package java.util; import org.checkerframework.checker.lock.qual.*; public final class Formatter implements java.io.Closeable, java.io.Flushable { public enum BigDecimalLayoutForm { SCIENTIFIC, DECIMAL_FLOAT; } public Formatter() { throw new RuntimeException("skeleton method"); } public Formatter(Appendable a1) { throw new RuntimeException("skeleton method"); } public Formatter(Locale a1) { throw new RuntimeException("skeleton method"); } public Formatter(Appendable a1, Locale a2) { throw new RuntimeException("skeleton method"); } public Formatter(String a1) throws java.io.FileNotFoundException { throw new RuntimeException("skeleton method"); } public Formatter(String a1, String a2) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException { throw new RuntimeException("skeleton method"); } public Formatter(String a1, String a2, Locale a3) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException { throw new RuntimeException("skeleton method"); } public Formatter(java.io.File a1) throws java.io.FileNotFoundException { throw new RuntimeException("skeleton method"); } public Formatter(java.io.File a1, String a2) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException { throw new RuntimeException("skeleton method"); } public Formatter(java.io.File a1, String a2, Locale a3) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException { throw new RuntimeException("skeleton method"); } public Formatter(java.io.PrintStream a1) { throw new RuntimeException("skeleton method"); } public Formatter(java.io.OutputStream a1) { throw new RuntimeException("skeleton method"); } public Formatter(java.io.OutputStream a1, String a2) throws java.io.UnsupportedEncodingException { throw new RuntimeException("skeleton method"); } public Formatter(java.io.OutputStream a1, String a2, Locale a3) throws java.io.UnsupportedEncodingException { throw new RuntimeException("skeleton method"); } public Locale locale() { throw new RuntimeException("skeleton method"); } public Appendable out() { throw new RuntimeException("skeleton method"); } public String toString(@GuardSatisfied Formatter this) { throw new RuntimeException("skeleton method"); } public void flush() { throw new RuntimeException("skeleton method"); } public void close() { throw new RuntimeException("skeleton method"); } public java.io. IOException ioException() { throw new RuntimeException("skeleton method"); } public Formatter format(String a1, Object... a2) { throw new RuntimeException("skeleton method"); } public Formatter format(Locale a1, String a2, Object... a3) { throw new RuntimeException("skeleton method"); } }