24 lines
604 B
Java
24 lines
604 B
Java
package net.minecraft.util;
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
@FunctionalInterface
|
|
public interface AbortableIterationConsumer<T> {
|
|
AbortableIterationConsumer.Continuation accept(T p_261708_);
|
|
|
|
static <T> AbortableIterationConsumer<T> forConsumer(Consumer<T> p_261477_) {
|
|
return p_261916_ -> {
|
|
p_261477_.accept(p_261916_);
|
|
return AbortableIterationConsumer.Continuation.CONTINUE;
|
|
};
|
|
}
|
|
|
|
public static enum Continuation {
|
|
CONTINUE,
|
|
ABORT;
|
|
|
|
public boolean shouldAbort() {
|
|
return this == ABORT;
|
|
}
|
|
}
|
|
} |