I was looking inside the AtomicInteger Class and I came across the following method:
AtomicInteger
/** * Atomically increments by one the current value. *
It's just another variation of an infinite loop, just as while(true){} is.
while(true){}