Java Boolean From toBoolean(StringBuilder value)

Here you can find the source of toBoolean(StringBuilder value)

Description

to Boolean

License

Open Source License

Declaration

public static Boolean toBoolean(StringBuilder value) 

Method Source Code

//package com.java2s;
/*//from w  w w.  j  a v a2s . com
 * Copyright 2010 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 * 
 *  http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

public class Main {
    public static Boolean toBoolean(StringBuilder value) {
        return Boolean.getBoolean(value.toString());
    }

    public static String toString(StringBuilder value) {
        return value.toString();
    }
}

Related

  1. toBoolean(String value, boolean dEfault)
  2. toBoolean(String value, boolean defaultValue)
  3. toBoolean(String value, boolean defaultValue)
  4. toBoolean(String value, boolean defaultValue)
  5. toBoolean(String value, boolean defaultValue)
  6. toBooleanA(byte[] data)
  7. toBooleanArray(byte a, boolean[] buf)
  8. toBooleanArray(byte[] array)
  9. toBooleanArray(byte[] byteArray)