Class SkullBlock

java.lang.Object
com.sk89q.worldedit.world.block.BaseBlock
com.sk89q.worldedit.blocks.SkullBlock
All Implemented Interfaces:
TileEntityBlock, Pattern, BlockStateHolder<BaseBlock>, NbtValued

public class SkullBlock extends BaseBlock
A skull block.
  • Constructor Details

    • SkullBlock

      public SkullBlock(BlockState state)
      Construct the skull block with a default type of skelton.
      Parameters:
      state - BlockState to set
    • SkullBlock

      public SkullBlock(BlockState blockState, String owner)
      Construct the skull block with a given rotation and owner. The type is assumed to be player unless owner is null or empty.
      Parameters:
      blockState - BlockState to set
      owner - name of player
  • Method Details

    • setOwner

      public void setOwner(String owner)
      Set the skull's owner. Automatically sets type to player if not empty or null.
      Parameters:
      owner - player name to set the skull to
    • getOwner

      public String getOwner()
      Get the skull's owner. Returns null if unset.
      Returns:
      player name or null
    • hasNbtData

      public boolean hasNbtData()
      Description copied from interface: NbtValued
      Returns whether the block contains NBT data. NbtValued.getNbtData() must not return null if this method returns true.
      Specified by:
      hasNbtData in interface NbtValued
      Overrides:
      hasNbtData in class BaseBlock
      Returns:
      true if there is NBT data
    • getNbtId

      public String getNbtId()
      Description copied from interface: TileEntityBlock
      Return the name of the title entity ID.
      Specified by:
      getNbtId in interface TileEntityBlock
      Overrides:
      getNbtId in class BaseBlock
      Returns:
      tile entity ID, non-null string
    • getNbtData

      public CompoundTag getNbtData()
      Description copied from interface: NbtValued
      Get the object's NBT data (tile entity data). The returned tag, if modified in any way, should be sent to NbtValued.setNbtData(CompoundTag) so that the instance knows of the changes. Making changes without calling NbtValued.setNbtData(CompoundTag) could have unintended consequences.

      NbtValued.hasNbtData() must return true if and only if method does not return null.

      Specified by:
      getNbtData in interface NbtValued
      Overrides:
      getNbtData in class BaseBlock
      Returns:
      compound tag, or null
    • setNbtData

      public void setNbtData(CompoundTag rootTag)
      Description copied from interface: NbtValued
      Set the object's NBT data (tile entity data).
      Specified by:
      setNbtData in interface NbtValued
      Overrides:
      setNbtData in class BaseBlock
      Parameters:
      rootTag - NBT data, or null if no data