
net.minecraft.server.BlockStateBoolean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
package net.minecraft.server;
import com.google.common.collect.ImmutableSet;
import java.util.Collection;
public class BlockStateBoolean extends BlockState {
private final ImmutableSet a = ImmutableSet.of(true, false);
protected BlockStateBoolean(String s) {
super(s, Boolean.class);
}
public static BlockStateBoolean of(String s) {
return new BlockStateBoolean(s);
}
public Collection c() {
return this.a;
}
public String a(Boolean obool) {
return obool.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy