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

org.bukkit.material.Furnace Maven / Gradle / Ivy

package org.bukkit.material;

import org.bukkit.Material;
import org.bukkit.block.BlockFace;

/**
 * Represents a furnace.
 */
public class Furnace extends FurnaceAndDispenser {

  public Furnace() {
    super(Material.FURNACE);
  }

  /**
   * Instantiate a furnace facing in a particular direction.
   *
   * @param direction the direction the furnace's "opening" is facing
   */
  public Furnace(BlockFace direction) {
    this();
    setFacingDirection(direction);
  }

  /**
   * @param type the raw type id
   * @deprecated Magic value
   */
  @Deprecated
  public Furnace(final int type) {
    super(type);
  }

  public Furnace(final Material type) {
    super(type);
  }

  /**
   * @param type the raw type id
   * @param data the raw data value
   * @deprecated Magic value
   */
  @Deprecated
  public Furnace(final int type, final byte data) {
    super(type, data);
  }

  /**
   * @param type the type
   * @param data the raw data value
   * @deprecated Magic value
   */
  @Deprecated
  public Furnace(final Material type, final byte data) {
    super(type, data);
  }

  @Override
  public Furnace clone() {
    return (Furnace) super.clone();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy