Example usage for java.util.concurrent.atomic AtomicBoolean toString

List of usage examples for java.util.concurrent.atomic AtomicBoolean toString

Introduction

In this page you can find the example usage for java.util.concurrent.atomic AtomicBoolean toString.

Prototype

public String toString() 

Source Link

Document

Returns the String representation of the current value.

Usage

From source file:Main.java

public static void main(String[] argv) throws Exception {
    AtomicBoolean atomicBoolean = new AtomicBoolean();

    System.out.println(atomicBoolean.toString());
}