Package org.bukkit.block
Interface Furnace
-
- All Superinterfaces:
BlockState,Container,InventoryHolder,Lockable,Metadatable,Nameable
public interface Furnace extends Container, Nameable
Represents a captured state of a furnace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description shortgetBurnTime()Get burn time.shortgetCookTime()Get cook time.FurnaceInventorygetInventory()Gets the inventory of the block represented by this block state.FurnaceInventorygetSnapshotInventory()Gets the captured inventory snapshot of this container.voidsetBurnTime(short burnTime)Set burn time.voidsetCookTime(short cookTime)Set cook time.-
Methods inherited from interface org.bukkit.block.BlockState
getBlock, getBlockData, getChunk, getData, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isPlaced, setBlockData, setData, setRawData, setType, update, update, update
-
Methods inherited from interface org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
-
Methods inherited from interface org.bukkit.Nameable
getCustomName, setCustomName
-
-
-
-
Method Detail
-
getBurnTime
short getBurnTime()
Get burn time.- Returns:
- Burn time
-
setBurnTime
void setBurnTime(short burnTime)
Set burn time.- Parameters:
burnTime- Burn time
-
getCookTime
short getCookTime()
Get cook time.- Returns:
- Cook time
-
setCookTime
void setCookTime(short cookTime)
Set cook time.- Parameters:
cookTime- Cook time
-
getInventory
FurnaceInventory getInventory()
Description 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 interfaceContainer- Specified by:
getInventoryin interfaceInventoryHolder- Returns:
- the inventory
-
getSnapshotInventory
FurnaceInventory getSnapshotInventory()
Description 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 interfaceContainer- Returns:
- the captured inventory snapshot
-
-