锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲精品在线三区,www在线免费观看,成人h动漫精品一区二区http://www.aygfsteel.com/ccj-999/archive/2006/04/04/37350.html#39243闂叉潵瑙備簯闂叉潵瑙備簯Tue, 04 Apr 2006 12:13:00 GMThttp://www.aygfsteel.com/ccj-999/archive/2006/04/04/37350.html#39243 /*
* @(#)Boolean.java 1.51 04/05/11
*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.lang;
public final class Boolean implements java.io.Serializable,
Comparable<Boolean>
{
private final boolean value;
public Boolean(boolean value) {
this.value = value;
}
public Boolean(String s) {
this(toBoolean(s));
}
public boolean booleanValue() {
return value;
}
public static boolean parseBoolean(String s) {
return toBoolean(s);
}