Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / BlockPropertyRedstoneSide.java
Simon Lindgren on 26 Mar 2020 385 bytes first commit
package net.minecraft.server;

public enum BlockPropertyRedstoneSide implements INamable {

    UP("up"), SIDE("side"), NONE("none");

    private final String d;

    private BlockPropertyRedstoneSide(String s) {
        this.d = s;
    }

    public String toString() {
        return this.getName();
    }

    @Override
    public String getName() {
        return this.d;
    }
}