Java org.apache.commons.lang.mutable MutableBoolean fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang.mutable MutableBoolean fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang.mutable MutableBoolean.

The text is from its open source code.

Subclass

org.apache.commons.lang.mutable.MutableBoolean has subclasses.
Click this link to see all its subclasses.

Constructor

MutableBoolean()
Constructs a new MutableBoolean with the default value of false.
MutableBoolean(boolean value)
Constructs a new MutableBoolean with the specified value.
MutableBoolean(Boolean value)
Constructs a new MutableBoolean with the specified value.

Method

booleanbooleanValue()
Returns the value of this MutableBoolean as a boolean.
ObjectgetValue()
Gets the value as a Boolean instance.
voidnotify()
Wakes up a single thread that is waiting on this object's monitor.
voidnotifyAll()
Wakes up all threads that are waiting on this object's monitor.
voidsetValue(boolean value)
Sets the value.
voidsetValue(Object value)
Sets the value from any Boolean instance.
voidwait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.