1 /*
2 * Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26
27 package java.lang;
28
29
30 @SuppressWarnings({"unchecked", "deprecation", "all"})
31 public final class Boolean implements java.io.Serializable, java.lang.Comparable<java.lang.Boolean> {
32
Boolean(boolean value)33 public Boolean(boolean value) { throw new RuntimeException("Stub!"); }
34
Boolean(@ibcore.util.Nullable java.lang.String s)35 public Boolean(@libcore.util.Nullable java.lang.String s) { throw new RuntimeException("Stub!"); }
36
parseBoolean(@ibcore.util.Nullable java.lang.String s)37 public static boolean parseBoolean(@libcore.util.Nullable java.lang.String s) { throw new RuntimeException("Stub!"); }
38
booleanValue()39 public boolean booleanValue() { throw new RuntimeException("Stub!"); }
40
valueOf(boolean b)41 @libcore.util.NonNull public static java.lang.Boolean valueOf(boolean b) { throw new RuntimeException("Stub!"); }
42
valueOf(@ibcore.util.Nullable java.lang.String s)43 @libcore.util.NonNull public static java.lang.Boolean valueOf(@libcore.util.Nullable java.lang.String s) { throw new RuntimeException("Stub!"); }
44
toString(boolean b)45 @libcore.util.NonNull public static java.lang.String toString(boolean b) { throw new RuntimeException("Stub!"); }
46
toString()47 @libcore.util.NonNull public java.lang.String toString() { throw new RuntimeException("Stub!"); }
48
hashCode()49 public int hashCode() { throw new RuntimeException("Stub!"); }
50
hashCode(boolean value)51 public static int hashCode(boolean value) { throw new RuntimeException("Stub!"); }
52
equals(@ibcore.util.Nullable java.lang.Object obj)53 public boolean equals(@libcore.util.Nullable java.lang.Object obj) { throw new RuntimeException("Stub!"); }
54
getBoolean(@ibcore.util.NonNull java.lang.String name)55 public static boolean getBoolean(@libcore.util.NonNull java.lang.String name) { throw new RuntimeException("Stub!"); }
56
compareTo(@ibcore.util.NonNull java.lang.Boolean b)57 public int compareTo(@libcore.util.NonNull java.lang.Boolean b) { throw new RuntimeException("Stub!"); }
58
compare(boolean x, boolean y)59 public static int compare(boolean x, boolean y) { throw new RuntimeException("Stub!"); }
60
logicalAnd(boolean a, boolean b)61 public static boolean logicalAnd(boolean a, boolean b) { throw new RuntimeException("Stub!"); }
62
logicalOr(boolean a, boolean b)63 public static boolean logicalOr(boolean a, boolean b) { throw new RuntimeException("Stub!"); }
64
logicalXor(boolean a, boolean b)65 public static boolean logicalXor(boolean a, boolean b) { throw new RuntimeException("Stub!"); }
66
67 public static final java.lang.Boolean FALSE;
68 static { FALSE = null; }
69
70 public static final java.lang.Boolean TRUE;
71 static { TRUE = null; }
72
73 public static final java.lang.Class<java.lang.Boolean> TYPE;
74 static { TYPE = null; }
75 }
76