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

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

Introduction

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

The text is from its open source code.

Constructor

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

Method

booleanbooleanValue()
Returns the value of this MutableBoolean as a boolean.
intcompareTo(final MutableBoolean other)
Compares this mutable to another in ascending order.
BooleangetValue()
Gets the value as a Boolean instance.
booleanisFalse()
Checks if the current value is false.
booleanisTrue()
Checks if the current value is true.
voidsetFalse()
Sets the value to true.
voidsetTrue()
Sets the value to false.
voidsetValue(final boolean value)
Sets the value.
voidsetValue(final Boolean value)
Sets the value from any Boolean instance.
BooleantoBoolean()
Gets this mutable as an instance of Boolean.