1 | /* Boolean.java -- object wrapper for boolean
|
---|
2 | Copyright (C) 1998, 2001 Free Software Foundation, Inc.
|
---|
3 |
|
---|
4 | This file is part of GNU Classpath.
|
---|
5 |
|
---|
6 | GNU Classpath is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | any later version.
|
---|
10 |
|
---|
11 | GNU Classpath is distributed in the hope that it will be useful, but
|
---|
12 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
14 | General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with GNU Classpath; see the file COPYING. If not, write to the
|
---|
18 | Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
---|
19 | 02111-1307 USA.
|
---|
20 |
|
---|
21 | Linking this library statically or dynamically with other modules is
|
---|
22 | making a combined work based on this library. Thus, the terms and
|
---|
23 | conditions of the GNU General Public License cover the whole
|
---|
24 | combination.
|
---|
25 |
|
---|
26 | As a special exception, the copyright holders of this library give you
|
---|
27 | permission to link this library with independent modules to produce an
|
---|
28 | executable, regardless of the license terms of these independent
|
---|
29 | modules, and to copy and distribute the resulting executable under
|
---|
30 | terms of your choice, provided that you also meet, for each linked
|
---|
31 | independent module, the terms and conditions of the license of that
|
---|
32 | module. An independent module is a module which is not derived from
|
---|
33 | or based on this library. If you modify this library, you may extend
|
---|
34 | this exception to your version of the library, but you are not
|
---|
35 | obligated to do so. If you do not wish to do so, delete this
|
---|
36 | exception statement from your version. */
|
---|
37 |
|
---|
38 |
|
---|
39 | package java.lang;
|
---|
40 |
|
---|
41 | import java.io.Serializable;
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * Instances of class <code>Boolean</code> represent primitive
|
---|
45 | * <code>boolean</code> values.
|
---|
46 | *
|
---|
47 | * @author Paul Fisher
|
---|
48 | * @since JDK1.0
|
---|
49 | */
|
---|
50 | public final class Boolean implements Serializable
|
---|
51 | {
|
---|
52 | static final long serialVersionUID = -3665804199014368530L;
|
---|
53 |
|
---|
54 | /**
|
---|
55 | * This field is a <code>Boolean</code> object representing the
|
---|
56 | * primitive value <code>true</code>. This instance is returned
|
---|
57 | * by the static <code>valueOf()</code> methods if they return
|
---|
58 | * a <code>Boolean</code> representing <code>true</code>.
|
---|
59 | */
|
---|
60 | public static final Boolean TRUE = new Boolean(true);
|
---|
61 |
|
---|
62 | /**
|
---|
63 | * This field is a <code>Boolean</code> object representing the
|
---|
64 | * primitive value <code>false</code>. This instance is returned
|
---|
65 | * by the static <code>valueOf()</code> methods if they return
|
---|
66 | * a <code>Boolean</code> representing <code>false</code>.
|
---|
67 | */
|
---|
68 | public static final Boolean FALSE = new Boolean(false);
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * The primitive type <code>boolean</code> is represented by this
|
---|
72 | * <code>Class</code> object.
|
---|
73 | */
|
---|
74 | public static final Class TYPE = VMClassLoader.getPrimitiveClass('Z');
|
---|
75 |
|
---|
76 | /**
|
---|
77 | * The immutable value of this Boolean.
|
---|
78 | */
|
---|
79 | private final boolean value;
|
---|
80 |
|
---|
81 | /**
|
---|
82 | * Create a <code>Boolean</code> object representing the value of the
|
---|
83 | * argument <code>value</code>. In general the use of the static
|
---|
84 | * method <code>valueof(boolean)</code> is more efficient since it will
|
---|
85 | * not create a new object.
|
---|
86 | *
|
---|
87 | * @param value the primitive value of this <code>Boolean</code>
|
---|
88 | */
|
---|
89 | public Boolean(boolean value) {
|
---|
90 | this.value = value;
|
---|
91 | }
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * Creates a <code>Boolean</code> object representing the primitive
|
---|
95 | * <code>true</code> if and only if <code>s</code> matches
|
---|
96 | * the string "true" ignoring case, otherwise the object will represent
|
---|
97 | * the primitive <code>false</code>. In general the use of the static
|
---|
98 | * method <code>valueof(String)</code> is more efficient since it will
|
---|
99 | * not create a new object.
|
---|
100 | *
|
---|
101 | * @param s the <code>String</code> representation of <code>true</code>
|
---|
102 | * or false
|
---|
103 | */
|
---|
104 | public Boolean(String s) {
|
---|
105 | value = "true".equalsIgnoreCase(s);
|
---|
106 | }
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * Return the primitive <code>boolean</code> value of this
|
---|
110 | * <code>Boolean</code> object.
|
---|
111 | */
|
---|
112 | public boolean booleanValue() {
|
---|
113 | return value;
|
---|
114 | }
|
---|
115 |
|
---|
116 | /**
|
---|
117 | * Returns the Boolean <code>TRUE</code> if the given boolean is
|
---|
118 | * <code>true</code>, otherwise it will return the Boolean
|
---|
119 | * <code>FALSE</code>.
|
---|
120 | *
|
---|
121 | * @since 1.4
|
---|
122 | */
|
---|
123 | public static Boolean valueOf(boolean b) {
|
---|
124 | return b ? TRUE : FALSE;
|
---|
125 | }
|
---|
126 |
|
---|
127 | /**
|
---|
128 | * Returns the Boolean <code>TRUE</code> if and only if the given
|
---|
129 | * String is equal, ignoring case, to the the String "true", otherwise
|
---|
130 | * it will return the Boolean <code>FALSE</code>.
|
---|
131 | */
|
---|
132 | public static Boolean valueOf(String s) {
|
---|
133 | return "true".equalsIgnoreCase(s) ? TRUE : FALSE;
|
---|
134 | }
|
---|
135 |
|
---|
136 | /**
|
---|
137 | * Returns the integer <code>1231</code> if this object represents
|
---|
138 | * the primitive <code>true</code> and the integer <code>1237</code>
|
---|
139 | * otherwise.
|
---|
140 | */
|
---|
141 | public int hashCode() {
|
---|
142 | return (value) ? 1231 : 1237;
|
---|
143 | }
|
---|
144 |
|
---|
145 | /**
|
---|
146 | * If the <code>obj</code> is an instance of <code>Boolean</code> and
|
---|
147 | * has the same primitive value as this object then <code>true</code>
|
---|
148 | * is returned. In all other cases, including if the <code>obj</code>
|
---|
149 | * is <code>null</code>, <code>false</code> is returned.
|
---|
150 | *
|
---|
151 | * @param obj possibly an instance of any <code>Class</code>
|
---|
152 | * @return <code>false</code> is <code>obj</code> is an instance of
|
---|
153 | * <code>Boolean</code> and has the same primitive value as this
|
---|
154 | * object.
|
---|
155 | */
|
---|
156 | public boolean equals(Object obj) {
|
---|
157 | return (obj instanceof Boolean && value == ((Boolean)obj).value);
|
---|
158 | }
|
---|
159 |
|
---|
160 | /**
|
---|
161 | * If the value of the system property <code>name</code> matches
|
---|
162 | * "true" ignoring case then the function returns <code>true</code>.
|
---|
163 | */
|
---|
164 | public static boolean getBoolean(String name) {
|
---|
165 | String val = System.getProperty(name);
|
---|
166 | return ("true".equalsIgnoreCase(val));
|
---|
167 | }
|
---|
168 |
|
---|
169 | /**
|
---|
170 | * Returns "true" if the value of the give boolean is <code>true</code> and
|
---|
171 | * returns "false" if the value of the given boolean is <code>false</code>.
|
---|
172 | *
|
---|
173 | * @since 1.4
|
---|
174 | */
|
---|
175 | public static String toString(boolean b)
|
---|
176 | {
|
---|
177 | return b ? "true" : "false";
|
---|
178 | }
|
---|
179 |
|
---|
180 | /**
|
---|
181 | * Returns "true" if the value of this object is <code>true</code> and
|
---|
182 | * returns "false" if the value of this object is <code>false</code>.
|
---|
183 | */
|
---|
184 | public String toString()
|
---|
185 | {
|
---|
186 | return (value) ? "true" : "false";
|
---|
187 | }
|
---|
188 | }
|
---|