Java Doc for Boolean.java in  » 6.0-JDK-Core » lang » java » lang » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » lang » java.lang 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.lang.Boolean

Boolean
final public class Boolean implements java.io.Serializable,Comparable<Boolean>(Code)
The Boolean class wraps a value of the primitive type boolean in an object. An object of type Boolean contains a single field whose type is boolean .

In addition, this class provides many methods for converting a boolean to a String and a String to a boolean , as well as other constants and methods useful when dealing with a boolean .
author:
   Arthur van Hoff
version:
   1.60, 05/05/07
since:
   JDK1.0



Field Summary
final public static  BooleanFALSE
     The Boolean object corresponding to the primitive value false .
final public static  BooleanTRUE
     The Boolean object corresponding to the primitive value true .
final public static  Class<Boolean>TYPE
     The Class object representing the primitive type boolean.

Constructor Summary
public  Boolean(boolean value)
     Allocates a Boolean object representing the value argument.
public  Boolean(String s)
     Allocates a Boolean object representing the value true if the string argument is not null and is equal, ignoring case, to the string "true" .

Method Summary
public  booleanbooleanValue()
     Returns the value of this Boolean object as a boolean primitive.
public  intcompareTo(Boolean b)
     Compares this Boolean instance with another.
public  booleanequals(Object obj)
     Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object.
public static  booleangetBoolean(String name)
     Returns true if and only if the system property named by the argument exists and is equal to the string "true" .
public  inthashCode()
     Returns a hash code for this Boolean object. the integer 1231 if this object represents true ; returns the integer 1237 if this object represents false .
public static  booleanparseBoolean(String s)
     Parses the string argument as a boolean.
public static  StringtoString(boolean b)
     Returns a String object representing the specified boolean.
public  StringtoString()
     Returns a String object representing this Boolean's value.
public static  BooleanvalueOf(boolean b)
     Returns a Boolean instance representing the specified boolean value.
public static  BooleanvalueOf(String s)
     Returns a Boolean with a value represented by the specified string.

Field Detail
FALSE
final public static Boolean FALSE(Code)
The Boolean object corresponding to the primitive value false .



TRUE
final public static Boolean TRUE(Code)
The Boolean object corresponding to the primitive value true .



TYPE
final public static Class<Boolean> TYPE(Code)
The Class object representing the primitive type boolean.
since:
   JDK1.1




Constructor Detail
Boolean
public Boolean(boolean value)(Code)
Allocates a Boolean object representing the value argument.

Note: It is rarely appropriate to use this constructor. Unless a new instance is required, the static factory Boolean.valueOf(boolean) is generally a better choice. It is likely to yield significantly better space and time performance.
Parameters:
  value - the value of the Boolean .




Boolean
public Boolean(String s)(Code)
Allocates a Boolean object representing the value true if the string argument is not null and is equal, ignoring case, to the string "true" . Otherwise, allocate a Boolean object representing the value false . Examples:

new Boolean("True") produces a Boolean object that represents true .
new Boolean("yes") produces a Boolean object that represents false .
Parameters:
  s - the string to be converted to a Boolean .





Method Detail
booleanValue
public boolean booleanValue()(Code)
Returns the value of this Boolean object as a boolean primitive. the primitive boolean value of this object.



compareTo
public int compareTo(Boolean b)(Code)
Compares this Boolean instance with another.
Parameters:
  b - the Boolean instance to be compared zero if this object represents the same boolean value as theargument; a positive value if this object represents trueand the argument represents false; and a negative value ifthis object represents false and the argument represents true
throws:
  NullPointerException - if the argument is null
See Also:   Comparable
since:
   1.5



equals
public boolean equals(Object obj)(Code)
Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object.
Parameters:
  obj - the object to compare with. true if the Boolean objects represent the same value; false otherwise.



getBoolean
public static boolean getBoolean(String name)(Code)
Returns true if and only if the system property named by the argument exists and is equal to the string "true" . (Beginning with version 1.0.2 of the JavaTM platform, the test of this string is case insensitive.) A system property is accessible through getProperty , a method defined by the System class.

If there is no property with the specified name, or if the specified name is empty or null, then false is returned.
Parameters:
  name - the system property name. the boolean value of the system property.
See Also:   java.lang.System.getProperty(java.lang.String)
See Also:   java.lang.System.getProperty(java.lang.Stringjava.lang.String)




hashCode
public int hashCode()(Code)
Returns a hash code for this Boolean object. the integer 1231 if this object represents true ; returns the integer 1237 if this object represents false .



parseBoolean
public static boolean parseBoolean(String s)(Code)
Parses the string argument as a boolean. The boolean returned represents the value true if the string argument is not null and is equal, ignoring case, to the string "true" .

Example: Boolean.parseBoolean("True") returns true .
Example: Boolean.parseBoolean("yes") returns false .
Parameters:
  s - the String containing the booleanrepresentation to be parsed the boolean represented by the string argument
since:
   1.5




toString
public static String toString(boolean b)(Code)
Returns a String object representing the specified boolean. If the specified boolean is true , then the string "true" will be returned, otherwise the string "false" will be returned.
Parameters:
  b - the boolean to be converted the string representation of the specified boolean
since:
   1.4



toString
public String toString()(Code)
Returns a String object representing this Boolean's value. If this object represents the value true , a string equal to "true" is returned. Otherwise, a string equal to "false" is returned. a string representation of this object.



valueOf
public static Boolean valueOf(boolean b)(Code)
Returns a Boolean instance representing the specified boolean value. If the specified boolean value is true , this method returns Boolean.TRUE ; if it is false , this method returns Boolean.FALSE . If a new Boolean instance is not required, this method should generally be used in preference to the constructor Boolean.Boolean(boolean) , as this method is likely to yield significantly better space and time performance.
Parameters:
  b - a boolean value. a Boolean instance representing b .
since:
   1.4



valueOf
public static Boolean valueOf(String s)(Code)
Returns a Boolean with a value represented by the specified string. The Boolean returned represents a true value if the string argument is not null and is equal, ignoring case, to the string "true" .
Parameters:
  s - a string. the Boolean value represented by the string.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.