Package org.bukkit.block
Interface Furnace
- All Superinterfaces:
- BlockInventoryHolder,- BlockState,- Container,- InventoryHolder,- Lockable,- Metadatable,- Nameable,- PersistentDataHolder,- TileState
- All Known Subinterfaces:
- BlastFurnace,- Smoker
Represents a captured state of a furnace.
- 
Method SummaryModifier and TypeMethodDescriptionshortGet burn time.shortGet cook time.intGet cook time total.Gets the inventory of the block represented by this block state.Map<CookingRecipe<?>, Integer> Get the recipes used in this furnace.Gets the captured inventory snapshot of this container.voidsetBurnTime(short burnTime) Set burn time.voidsetCookTime(short cookTime) Set cook time.voidsetCookTimeTotal(int cookTimeTotal) Set cook time.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- 
getBurnTimeshort getBurnTime()Get burn time.- Returns:
- Burn time
 
- 
setBurnTimevoid setBurnTime(short burnTime) Set burn time. A burn time greater than 0 will cause this block to be lit, whilst a time less than 0 will extinguish it.- Parameters:
- burnTime- Burn time
 
- 
getCookTimeshort getCookTime()Get cook time. This is the amount of time the item has been cooking for.- Returns:
- Cook time
 
- 
setCookTimevoid setCookTime(short cookTime) Set cook time. This is the amount of time the item has been cooking for.- Parameters:
- cookTime- Cook time
 
- 
getCookTimeTotalint getCookTimeTotal()Get cook time total. This is the amount of time the item is required to cook for.- Returns:
- Cook time total
 
- 
setCookTimeTotalvoid setCookTimeTotal(int cookTimeTotal) Set cook time. This is the amount of time the item is required to cook for.- Parameters:
- cookTimeTotal- Cook time total
 
- 
getRecipesUsedGet the recipes used in this furnace. Note: These recipes used are reset when the result item is manually taken from the furnace.- Returns:
- An immutable map with the recipes used and the times used
 
- 
getInventoryDescription copied from interface:ContainerGets 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- Container
- Specified by:
- getInventoryin interface- InventoryHolder
- Returns:
- the inventory
 
- 
getSnapshotInventoryDescription copied from interface:ContainerGets 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.- Specified by:
- getSnapshotInventoryin interface- Container
- Returns:
- the captured inventory snapshot
 
 
-