类 Diode

所有已实现的接口:
Cloneable, Directional, Redstone

public class Diode extends MaterialData implements Directional, Redstone
代表开启或关闭状态的红石中继器.
另请参阅:
  • 字段详细资料

    • DEFAULT_DIRECTION

      protected static final BlockFace DEFAULT_DIRECTION
    • DEFAULT_DELAY

      protected static final int DEFAULT_DELAY
      另请参阅:
    • DEFAULT_STATE

      protected static final boolean DEFAULT_STATE
      另请参阅:
  • 构造器详细资料

    • Diode

      public Diode()
      构造一个开启状态的、1延迟、默认朝向(北)的红石中继器. 默认情况下这个构造器创建的是开启状态的红石中继器,为了兼容之前的实现.

      原文:Constructs a diode switched on, with a delay of 1 and facing the default direction (north). By default this constructor creates a diode that is switched on for backwards compatibility with past implementations.

    • Diode

      public Diode(BlockFace facingDirection)
      构造一个关闭状态的、1延迟、指定朝向的红石中继器.

      原文:Constructs a diode switched off, with a delay of 1 and facing the specified direction.

      参数:
      facingDirection - 朝向
      另请参阅:
    • Diode

      public Diode(BlockFace facingDirection, int delay)
      构造一个关闭状态的、指定延迟、指定朝向的红石中继器.

      原文:Constructs a diode switched off, with the specified delay and facing the specified direction.

      参数:
      facingDirection - 朝向
      delay - 红石刻 (1-4)
      另请参阅:
    • Diode

      public Diode(BlockFace facingDirection, int delay, boolean state)
      构造一个开启或关闭状态的、指定延迟、指定朝向的红石中继器.

      原文:Constructs a diode switched on or off, with the specified delay and facing the specified direction.

      参数:
      facingDirection - 朝向
      delay - 刻 (1-4)
      state - 激活状态
      另请参阅:
    • Diode

      @Deprecated public Diode(int type)
      已过时。
      不安全的参数
      参数:
      type - the raw type id
    • Diode

      public Diode(Material type)
    • Diode

      @Deprecated public Diode(int type, byte data)
      已过时。
      不安全的参数
      参数:
      type - the raw type id
      data - the raw data value
    • Diode

      @Deprecated public Diode(Material type, byte data)
      已过时。
      不安全的参数
      参数:
      type - the type
      data - the raw data value
  • 方法详细资料

    • setDelay

      public void setDelay(int delay)
      设置这个红石中继器的延迟.

      原文:Sets the delay of the repeater.

      参数:
      delay - 延迟 (1-4)
    • getDelay

      public int getDelay()
      获取这个红石中继器的延迟 (以刻为单位).

      原文:Gets the delay of the repeater in ticks.

      返回:
      延迟 (1-4)
    • setFacingDirection

      public void setFacingDirection(BlockFace face)
      设置这个红石中继器的朝向.

      原文:Sets the direction this diode is facing.

      指定者:
      setFacingDirection 在接口中 Directional
      参数:
      face - 朝向
      另请参阅:
    • getFacing

      public BlockFace getFacing()
      获取这个红石中继器的朝向.

      原文:Gets the direction this diode is facing

      指定者:
      getFacing 在接口中 Directional
      返回:
      这个红石中继器的朝向
      另请参阅:
    • toString

      public String toString()
      覆盖:
      toString 在类中 MaterialData
    • clone

      public Diode clone()
      覆盖:
      clone 在类中 MaterialData
    • isPowered

      public boolean isPowered()
      检测这个红石中继器是否充能.

      原文:Checks if the diode is powered.

      指定者:
      isPowered 在接口中 Redstone
      返回:
      这个红石中继器是否充能