package java.util; import org.checkerframework.dataflow.qual.Pure; import org.checkerframework.dataflow.qual.SideEffectFree; import org.checkerframework.checker.nullness.qual.Nullable; public final class Currency implements java.io.Serializable { private static final long serialVersionUID = 0L; protected Currency() {} public static Currency getInstance(String a1) { throw new RuntimeException("skeleton method"); } public static Currency getInstance(Locale a1) { throw new RuntimeException("skeleton method"); } public String getCurrencyCode() { throw new RuntimeException("skeleton method"); } public String getSymbol() { throw new RuntimeException("skeleton method"); } public String getSymbol(Locale a1) { throw new RuntimeException("skeleton method"); } public int getDefaultFractionDigits() { throw new RuntimeException("skeleton method"); } @SideEffectFree public String toString() { throw new RuntimeException("skeleton method"); } }