Package org.bukkit.block
Interface Container
- All Superinterfaces:
- BlockInventoryHolder,- BlockState,- InventoryHolder,- Lockable,- Metadatable,- Nameable,- PersistentDataHolder,- TileState
- All Known Subinterfaces:
- Barrel,- BlastFurnace,- BrewingStand,- Chest,- Crafter,- Dispenser,- Dropper,- Furnace,- Hopper,- ShulkerBox,- Smoker
Represents a captured state of a container block.
- 
Method SummaryModifier and TypeMethodDescriptionGets the inventory of the block represented by this block state.Gets the captured inventory snapshot of this container.Methods inherited from interface org.bukkit.inventory.BlockInventoryHoldergetBlockMethods inherited from interface org.bukkit.block.BlockStatecopy, copy, getBlock, getBlockData, getChunk, getData, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isPlaced, setBlockData, setData, setRawData, setType, update, update, updateMethods inherited from interface org.bukkit.block.LockablegetLock, isLocked, setLock, setLockItemMethods inherited from interface org.bukkit.metadata.MetadatablegetMetadata, hasMetadata, removeMetadata, setMetadataMethods inherited from interface org.bukkit.NameablegetCustomName, setCustomNameMethods inherited from interface org.bukkit.block.TileStategetPersistentDataContainer
- 
Method Details- 
getInventoryGets 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. - Specified by:
- getInventoryin interface- InventoryHolder
- Returns:
- the inventory
 
- 
getSnapshotInventoryGets 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.- Returns:
- the captured inventory snapshot
 
 
-