KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > concurrent > atomic > AtomicIntegerFieldUpdater

java.util.concurrent.atomic
Class AtomicIntegerFieldUpdater<T>

java.lang.Object
  extended by java.util.concurrent.atomic.AtomicIntegerFieldUpdater<T>

public int addAndGet(T obj,
                     int delta)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected AtomicIntegerFieldUpdater()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract boolean compareAndSet(T obj,
                                      int expect,
                                      int update)
See Also:
ClassCastException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int decrementAndGet(T obj)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract int get(T obj)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getAndAdd(T obj,
                     int delta)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getAndDecrement(T obj)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getAndIncrement(T obj)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getAndSet(T obj,
                     int newValue)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int incrementAndGet(T obj)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static <U> AtomicIntegerFieldUpdater<U> newUpdater(Class<U> tclass,
                                                          String fieldName)
See Also:
RuntimeException, IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void set(T obj,
                         int newValue)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract boolean weakCompareAndSet(T obj,
                                          int expect,
                                          int update)
See Also:
ClassCastException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags