|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.sourceforge.jemm.util.JEMMType org.sourceforge.jemm.collections.JemmAtomicInteger
public class JemmAtomicInteger
Field Summary |
---|
Fields inherited from class org.sourceforge.jemm.util.JEMMType |
---|
jemmOIF |
Constructor Summary | |
---|---|
|
JemmAtomicInteger()
|
|
JemmAtomicInteger(int initialValue)
|
protected |
JemmAtomicInteger(ShadowTypeObject shadow)
|
Method Summary | |
---|---|
int |
addAndGet(int delta)
Atomically adds the given value to the current value. |
boolean |
compareAndSet(int expected,
int newValue)
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. |
int |
incrementAndGet()
Atomically increments by one the current value. |
int |
intValue()
|
long |
longValue()
|
void |
set(int newValue)
Sets to the given value. |
java.lang.String |
toString()
Returns the String representation of the current value. |
Methods inherited from class org.sourceforge.jemm.util.JEMMType |
---|
setShadow |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public JemmAtomicInteger()
public JemmAtomicInteger(int initialValue)
protected JemmAtomicInteger(ShadowTypeObject shadow)
Method Detail |
---|
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 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 final boolean compareAndSet(int expected, int newValue)
==
the expected value.
expected
- the expected valuenewValue
- the new value
public java.lang.String toString()
toString
in class java.lang.Object
public int intValue()
public long longValue()
public float floatValue()
public double doubleValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |