minecraft-source/src/net/minecraft/world/level/block/state/properties/RedstoneSide.java

26 lines
532 B
Java

package net.minecraft.world.level.block.state.properties;
import net.minecraft.util.StringRepresentable;
public enum RedstoneSide implements StringRepresentable {
UP("up"),
SIDE("side"),
NONE("none");
private final String name;
private RedstoneSide(final String string3) {
this.name = string3;
}
@Override
public String toString() {
return this.getSerializedName();
}
@Override
public String getSerializedName() {
return this.name;
}
}