Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.lang.Boolean

Uses of Boolean in java.lang
 

Fields in java.lang declared as Boolean
static Boolean Boolean.TRUE
          This field is a Boolean object representing the primitive value true.
static Boolean Boolean.FALSE
          This field is a Boolean object representing the primitive value false.
 

Methods in java.lang that return Boolean
static Boolean Boolean.valueOf(boolean b)
          Returns the Boolean TRUE if the given boolean is true, otherwise it will return the Boolean FALSE.
static Boolean Boolean.valueOf(String s)
          Returns the Boolean TRUE if and only if the given String is equal, ignoring case, to the the String "true", otherwise it will return the Boolean FALSE.
 

Methods in java.lang with parameters of type Boolean
 int Boolean.compareTo(Boolean other)
          Compares this Boolean to another.