程序包 org.bukkit.block
接口 Container
- 所有超级接口:
BlockState
,InventoryHolder
,Lockable
,Metadatable
- 所有已知子接口:
Beacon
,BrewingStand
,Chest
,Dispenser
,Dropper
,Furnace
,Hopper
,ShulkerBox
Represents a captured state of a container block.
-
方法概要
修饰符和类型方法说明Gets the inventory of the block represented by this block state.Gets the captured inventory snapshot of this container.从接口继承的方法 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.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
-
方法详细资料
-
getInventory
Inventory getInventory()Gets the inventory of the block represented by 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.
- 指定者:
getInventory
在接口中InventoryHolder
- 返回:
- the inventory
-
getSnapshotInventory
Inventory getSnapshotInventory()Gets the captured inventory snapshot of this container.The returned inventory is not linked to any block. Any modifications to the returned inventory will not be applied to the block represented by this block state up until
BlockState.update(boolean, boolean)
has been called.- 返回:
- the captured inventory snapshot
-