枚举 MushroomBlockTexture

java.lang.Object
java.lang.Enum<MushroomBlockTexture>
org.bukkit.material.types.MushroomBlockTexture
所有已实现的接口:
Serializable, Comparable<MushroomBlockTexture>, Constable

public enum MushroomBlockTexture extends Enum<MushroomBlockTexture>
代表蘑菇方块的不同材质.
  • 枚举常量详细资料

    • ALL_PORES

      public static final MushroomBlockTexture ALL_PORES
      各个面都是气孔材质
    • CAP_NORTH_WEST

      public static final MushroomBlockTexture CAP_NORTH_WEST
      上面、西面和北面是蘑菇盖材质
    • CAP_NORTH

      public static final MushroomBlockTexture CAP_NORTH
      上面和北面是蘑菇盖材质
    • CAP_NORTH_EAST

      public static final MushroomBlockTexture CAP_NORTH_EAST
      上面、北面和东面是蘑菇盖材质
    • CAP_WEST

      public static final MushroomBlockTexture CAP_WEST
      上面和西面是蘑菇盖材质
    • CAP_TOP

      public static final MushroomBlockTexture CAP_TOP
      上面是蘑菇盖材质
    • CAP_EAST

      public static final MushroomBlockTexture CAP_EAST
      上面和东面是蘑菇盖材质
    • CAP_SOUTH_WEST

      public static final MushroomBlockTexture CAP_SOUTH_WEST
      上面、南面和西面是蘑菇盖材质
    • CAP_SOUTH

      public static final MushroomBlockTexture CAP_SOUTH
      上面和南面是蘑菇盖材质
    • CAP_SOUTH_EAST

      public static final MushroomBlockTexture CAP_SOUTH_EAST
      上面、东面和南面是蘑菇盖材质
    • STEM_SIDES

      public static final MushroomBlockTexture STEM_SIDES
      4个侧面都是蘑菇茎材质,上面和下面是气孔材质
    • ALL_CAP

      public static final MushroomBlockTexture ALL_CAP
      6个面都是蘑菇盖材质
    • ALL_STEM

      public static final MushroomBlockTexture ALL_STEM
      6个面都是蘑菇茎材质
  • 方法详细资料

    • values

      public static MushroomBlockTexture[] values()
      按照声明该枚举类型的常量的顺序, 返回一个包含这些常量的数组。
      返回:
      按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
    • valueOf

      public static MushroomBlockTexture valueOf(String name)
      返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量
      NullPointerException - 如果参数为空值
    • getData

      @Deprecated public byte getData()
      已过时。
      不安全的参数
      获取代表这个蘑菇方块朝向的相关数据值.

      原文:Gets the associated data value representing this mushroom block face.

      返回:
      包含这个蘑菇方块朝向的数据值
    • getCapFace

      @Nullable public @Nullable BlockFace getCapFace()
      获取这个材质所对的朝向.

      原文:Gets the face that has cap texture.

      返回:
      材质的朝向
    • getByData

      @Deprecated @Nullable public static @Nullable MushroomBlockTexture getByData(byte data)
      已过时。
      不安全的参数
      以给定的数据值获取 MushroomBlockType.

      原文:Gets the MushroomBlockType with the given data value.

      参数:
      data - 数据值
      返回:
      代表这个数据值的 MushroomBlockTexture,如果相关数据值不存在为null
    • getCapByFace

      获取关于指定方块朝向的蘑菇盖的 MushroomBlockType.

      原文:Gets the MushroomBlockType with cap texture on the given block face.

      参数:
      face - 方块朝向
      返回:
      代表这个朝向的 MushroomBlockTexture,如果相关数据值不存在为null
      另请参阅: