File: java.lang.Boolean

package info (click to toggle)
bock 0.20.2.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,228 kB
  • ctags: 1,370
  • sloc: ansic: 7,367; java: 5,553; yacc: 963; lex: 392; makefile: 243; sh: 90; perl: 42
file content (51 lines) | stat: -rw-r--r-- 1,007 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// java.lang.Boolean
// An implementation of the Java Language Specification section 20.4
// Written by Charles Briscoe-Smith; refer to the file LEGAL for details.

package java.lang;

public final class Boolean {
	public static final Boolean TRUE = new Boolean(true);
	public static final Boolean FALSE = new Boolean(false);

	private boolean value;

	public Boolean(boolean b) {
		value=b;
	}

	public Boolean(String s) {
		value=valueOf(s);
	}

	public String toString() {
		return value ? "true" : "false";
	}

	public boolean equals(Object obj) {
		try {
			return ((Boolean) obj).value==value;
		} catch (ClassCastException e) {
			return false;
		} catch (NullPointerException e) {
			return false;
		}
	}

	public int hashCode() {
		return value ? 1231 : 1237;
	}

	public boolean booleanValue() {
		return value;
	}

	public static boolean valueOf(String s) {
		return "true".equalsIgnoreCase(s);
	}

	public static boolean getBoolean(String name) {
		// FIXME: implement this
		return false;
	}
}