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

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

package org.bukkit.material;

import org.bukkit.Material;

/**
 * Represents a detector rail
 */
public class DetectorRail extends ExtendedRails implements PressureSensor {
  public DetectorRail() {
    super(Material.DETECTOR_RAIL);
  }

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

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

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

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

  public boolean isPressed() {
    return (getData() & 0x8) == 0x8;
  }

  public void setPressed(boolean isPressed) {
    setData((byte) (isPressed ? (getData() | 0x8) : (getData() & ~0x8)));
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy