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:
java.io.Serializable
,Mutable<T>
public class MutableObject<T> extends java.lang.Object implements Mutable<T>, java.io.Serializable
A mutableObject
wrapper.- Since:
- 2.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MutableObject()
Constructs a new MutableObject with the default value ofnull
.MutableObject(T value)
Constructs a new MutableObject with the specified value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Compares this object against the specified object.T
getValue()
Gets the value.int
hashCode()
Returns the value's hash code or0
if the value isnull
.void
setValue(T value)
Sets the value.java.lang.String
toString()
Returns the String value of this mutable.
-
-
-
Constructor Detail
-
MutableObject
public MutableObject()
Constructs a new MutableObject with the default value ofnull
.
-
MutableObject
public MutableObject(T value)
Constructs a new MutableObject with the specified value.- Parameters:
value
- the initial value to store
-
-
Method Detail
-
getValue
public T getValue()
Gets the value.
-
setValue
public void setValue(T value)
Sets the value.
-
equals
public boolean equals(java.lang.Object obj)
Compares this object against the specified object. The result is
true
if and only if the argument is notnull
and is aMutableObject
object that contains the sameT
value as this object.- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- the object to compare with,null
returnsfalse
- Returns:
true
if the objects are the same;true
if the objects have equivalentvalue
fields;false
otherwise.
-
hashCode
public int hashCode()
Returns the value's hash code or0
if the value isnull
.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- the value's hash code or
0
if the value isnull
.
-
toString
public java.lang.String toString()
Returns the String value of this mutable.- Overrides:
toString
in classjava.lang.Object
- Returns:
- the mutable value as a string
-
-