|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Number
org.mapdb.Atomic.Integer
public static final class Atomic.Integer
An int record that may be updated atomically. An
Atomic@Integer is used in applications such as atomically
incremented counters, and cannot be used as a replacement for an
Integer. However, this class does extend
Number to allow uniform access by tools and utilities that
deal with numerically-based classes.
| Field Summary | |
|---|---|
protected Engine |
engine
|
protected long |
recid
|
| Constructor Summary | |
|---|---|
Atomic.Integer(Engine engine,
long recid)
|
|
| Method Summary | |
|---|---|
int |
addAndGet(int delta)
Atomically adds the given value to the current value. |
boolean |
compareAndSet(int expect,
int update)
Atomically sets the value to the given updated value if the current value == the expected value. |
int |
decrementAndGet()
Atomically decrements by one the current value. |
double |
doubleValue()
|
float |
floatValue()
|
int |
get()
Gets the current value. |
int |
getAndAdd(int delta)
Atomically adds the given value to the current value. |
int |
getAndDecrement()
Atomically decrements by one the current value. |
int |
getAndIncrement()
Atomically increments by one the current value. |
int |
getAndSet(int newValue)
Atomically sets to the given value and returns the old value. |
long |
getRecid()
|
int |
incrementAndGet()
Atomically increments by one the current value. |
int |
intValue()
|
long |
longValue()
|
void |
set(int newValue)
Sets to the given value. |
String |
toString()
Returns the String representation of the current value. |
| Methods inherited from class java.lang.Number |
|---|
byteValue, shortValue |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected final Engine engine
protected final long recid
| Constructor Detail |
|---|
public Atomic.Integer(Engine engine,
long recid)
| Method Detail |
|---|
public long getRecid()
public final int get()
public final void set(int newValue)
newValue - the new valuepublic final int getAndSet(int newValue)
newValue - the new value
public final boolean compareAndSet(int expect,
int update)
== the expected value.
expect - the expected valueupdate - the new value
public final int getAndIncrement()
public final int getAndDecrement()
public final int getAndAdd(int delta)
delta - the value to add
public final int incrementAndGet()
public final int decrementAndGet()
public final int addAndGet(int delta)
delta - the value to add
public String toString()
toString in class Objectpublic int intValue()
intValue in class Numberpublic long longValue()
longValue in class Numberpublic float floatValue()
floatValue in class Numberpublic double doubleValue()
doubleValue in class Number
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||