程序包 org.bukkit.block
接口 Chest
- 所有超级接口:
BlockState
,Container
,InventoryHolder
,Lockable
,Metadatable
,Nameable
代表一个箱子(快照).
-
方法概要
从接口继承的方法 org.bukkit.block.BlockState
getBlock, getChunk, getData, getLightLevel, getLocation, getLocation, getRawData, getType, getTypeId, getWorld, getX, getY, getZ, isPlaced, setData, setRawData, setType, setTypeId, update, update, update
从接口继承的方法 org.bukkit.block.Container
getInventory, getSnapshotInventory
从接口继承的方法 org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
从接口继承的方法 org.bukkit.Nameable
getCustomName, setCustomName
-
方法详细资料
-
getBlockInventory
Inventory getBlockInventory()返回箱子类型的物品栏.如果这是大型箱子,将返回与此箱子对应的一半.
如果方块状态未应用(译注:仅仅是一种表示而未应用到实际的方块上)本方法将返回物品栏快照.
原文: Gets the inventory of the chest block represented by this block state.
If the chest is a double chest, it returns just the portion of the inventory linked to the half of the chest corresponding to this block state.
If the block was changed to a different type in the meantime, the returned inventory might no longer be valid.
If this block state is not placed this will return the captured inventory snapshot instead.
- 返回:
- 箱子类型的物品栏
-