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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

MutableLong(long value)
Constructs a new MutableLong with the specified value.
MutableLong(Number value)
Constructs a new MutableLong with the specified value.
MutableLong()
Constructs a new MutableLong with the default value of zero.

Method

voidadd(long operand)
Adds a value.
voidadd(Number operand)
Adds a value.
voiddecrement()
Decrements the value.
ObjectgetValue()
Gets the value as a Long instance.
voidincrement()
Increments the value.
intintValue()
Returns the value of this MutableLong as a int.
longlongValue()
Returns the value of this MutableLong as a long.
voidsetValue(long value)
Sets the value.
voidsetValue(Object value)
Sets the value from any Number instance.
LongtoLong()
Gets this mutable as an instance of Long.