35 lines
870 B
Java
35 lines
870 B
Java
package net.minecraft.server.level;
|
|
|
|
import java.util.function.IntFunction;
|
|
import net.minecraft.util.ByIdMap;
|
|
import net.minecraft.util.OptionEnum;
|
|
import net.minecraft.util.ByIdMap.OutOfBoundsStrategy;
|
|
|
|
public enum ParticleStatus implements OptionEnum {
|
|
ALL(0, "options.particles.all"),
|
|
DECREASED(1, "options.particles.decreased"),
|
|
MINIMAL(2, "options.particles.minimal");
|
|
|
|
private static final IntFunction<ParticleStatus> BY_ID = ByIdMap.continuous(ParticleStatus::getId, values(), OutOfBoundsStrategy.WRAP);
|
|
private final int id;
|
|
private final String key;
|
|
|
|
private ParticleStatus(final int id, final String key) {
|
|
this.id = id;
|
|
this.key = key;
|
|
}
|
|
|
|
@Override
|
|
public String getKey() {
|
|
return this.key;
|
|
}
|
|
|
|
@Override
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public static ParticleStatus byId(int id) {
|
|
return (ParticleStatus)BY_ID.apply(id);
|
|
}
|
|
}
|