Package org.apache.commons.lang3.mutable
Class MutableObject<T>
java.lang.Object
org.apache.commons.lang3.mutable.MutableObject<T>
- Type Parameters:
T
- the type to set and get
- All Implemented Interfaces:
Serializable
,Mutable<T>
A mutable
Object
wrapper.- Since:
- 2.1
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new MutableObject with the default value ofnull
.MutableObject
(T value) Constructs a new MutableObject with the specified value. -
Method Summary
-
Constructor Details
-
MutableObject
public MutableObject()Constructs a new MutableObject with the default value ofnull
. -
MutableObject
Constructs a new MutableObject with the specified value.- Parameters:
value
- the initial value to store
-
-
Method Details
-
equals
Compares this object against the specified object. The result istrue
if and only if the argument is notnull
and is aMutableObject
object that contains the sameMutableObject
value as this object. -
getValue
Gets the value. -
hashCode
Returns the value's hash code or0
if the value isnull
. -
setValue
Sets the value. -
toString
Returns the String value of this mutable.
-