Java Boolean Value From booleanValue(String s)

Here you can find the source of booleanValue(String s)

Description

Returns the boolean corresponding to a given string.

License

Open Source License

Declaration


public static boolean booleanValue(String s) 

Method Source Code

//package com.java2s;

public class Main {
    /*************************************************************************
     *   Returns the <code>boolean</code> corresponding to a given string.
     ************************************************************************/
// w w  w .  j a v  a2 s  .  c  o  m
    public static boolean booleanValue(String s) {
        return Boolean.valueOf(s).booleanValue();
    }
}

Related

  1. booleanValue(Object object)
  2. booleanValue(Object value)
  3. booleanValue(String s)
  4. booleanValue(String s)
  5. booleanValue(String s)
  6. booleanValue(String stringValue)
  7. booleanValue(String tfString)
  8. booleanValue(String tfString)
  9. booleanValue(String tfString)