public interface IntConsumer
bitmap.forEach(new IntConsumer() {
@Override
public void accept(int value) {
// do something here
}});
}
| Modifier and Type | Method and Description |
|---|---|
void |
accept(int value)
Receives the integer
|
Copyright © 2016. All Rights Reserved.