package java.lang; import checkers.nullness.quals.*; @checkers.quals.DefaultQualifier("checkers.nullness.quals.NonNull") public final class Boolean implements java.io.Serializable, Comparable<Boolean> { private static final long serialVersionUID = 0; public final static Boolean TRUE; public final static Boolean FALSE; public final static Class<Boolean> TYPE; public Boolean(boolean a1) { throw new RuntimeException("skeleton method"); } public Boolean(@Nullable String a1) { throw new RuntimeException("skeleton method"); } public static boolean parseBoolean(@Nullable String a1) { throw new RuntimeException("skeleton method"); } public boolean booleanValue() { throw new RuntimeException("skeleton method"); } public static Boolean valueOf(boolean a1) { throw new RuntimeException("skeleton method"); } public static Boolean valueOf(@Nullable String a1) { throw new RuntimeException("skeleton method"); } public static String toString(boolean a1) { throw new RuntimeException("skeleton method"); } public String toString() { throw new RuntimeException("skeleton method"); } public int hashCode() { throw new RuntimeException("skeleton method"); } public boolean equals(@Nullable Object a1) { throw new RuntimeException("skeleton method"); } public static boolean getBoolean(@Nullable String a1) { throw new RuntimeException("skeleton method"); } public int compareTo(Boolean a1) { throw new RuntimeException("skeleton method"); } }