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>
public class MutableObject<T> extends Object implements Mutable<T>, Serializable
A mutableObjectwrapper.- 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 booleanequals(Object obj)Compares this object against the specified object.TgetValue()Gets the value.inthashCode()Returns the value's hash code or0if the value isnull.voidsetValue(T value)Sets the value.StringtoString()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
-
equals
public boolean equals(Object obj)
Compares this object against the specified object. The result istrueif and only if the argument is notnulland is aMutableObjectobject that contains the sameMutableObjectvalue as this object.
-
hashCode
public int hashCode()
Returns the value's hash code or0if the value isnull.
-
-