All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.block.BlockFenceBase Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
package cn.nukkit.block;

import cn.nukkit.api.DeprecationDetails;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.blockproperty.BlockProperties;
import cn.nukkit.blockproperty.CommonBlockProperties;
import cn.nukkit.blockproperty.exception.InvalidBlockPropertyValueException;
import cn.nukkit.blockproperty.value.WoodType;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Optional;

@PowerNukkitOnly
@Since("1.4.0.0-PN")
public abstract class BlockFenceBase extends BlockFence {
    @Since("1.4.0.0-PN")
    @PowerNukkitOnly
    public BlockFenceBase() {
        this(0);
    }

    @Since("1.4.0.0-PN")
    @PowerNukkitOnly
    public BlockFenceBase(int meta) {
        super(meta);
    }

    @Since("1.4.0.0-PN")
    @PowerNukkitOnly
    @Nonnull
    @Override
    public BlockProperties getProperties() {
        return CommonBlockProperties.EMPTY_PROPERTIES;
    }

    @Deprecated @DeprecationDetails(
            reason = "Will always returns empty on this type. It is here for backward compatibility",
            since = "1.4.0.0-PN")
    @Override
    public Optional getWoodType() {
        return Optional.empty();
    }

    @Deprecated @DeprecationDetails(
            reason = "Only accepts null. It is here for backward compatibility",
            since = "1.4.0.0-PN")
    @Override
    public void setWoodType(@Nullable WoodType woodType) {
        if (woodType != null) {
            throw new InvalidBlockPropertyValueException(WoodType.PROPERTY, null, woodType, "This block don't have a regular wood type");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy