类 Bed

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

public class Bed extends MaterialData implements Directional
代表床.
  • 构造器详细资料

    • Bed

      public Bed()
      床的默认构造器。

      原文:Default constructor for a bed.

    • Bed

      public Bed(BlockFace direction)
      使用特定的朝向以实例化一个床。

      原文:Instantiate a bed facing in a particular direction.

      参数:
      direction - 床头的朝向
    • Bed

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

      public Bed(Material type)
    • Bed

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

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

    • isHeadOfBed

      public boolean isHeadOfBed()
      限定于此方块是否代表床头

      原文:Determine if this block represents the head of the bed

      返回:
      true 方块是床头, false 如果不是
    • setHeadOfBed

      public void setHeadOfBed(boolean isHeadOfBed)
      设置方块是床头还是床尾

      原文:Configure this to be either the head or the foot of the bed

      参数:
      isHeadOfBed - 想要弄成床头就设成true
    • setFacingDirection

      public void setFacingDirection(BlockFace face)
      设置床头的朝向.注意这只会影响到两个方块的床。

      原文:Set which direction the head of the bed is facing. Note that this will only affect one of the two blocks the bed is made of.

      指定者:
      setFacingDirection 在接口中 Directional
      参数:
      face - 这个方块的朝向
    • getFacing

      public BlockFace getFacing()
      获取床头的朝向。 原文:Get the direction that this bed's head is facing toward
      指定者:
      getFacing 在接口中 Directional
      返回:
      床头的朝向
    • toString

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

      public Bed clone()
      覆盖:
      clone 在类中 MaterialData