Package org.bukkit.block
Interface BrewingStand
- All Superinterfaces:
BlockInventoryHolder
,BlockState
,Container
,InventoryHolder
,Lockable
,LockableTileState
,Metadatable
,Nameable
,PersistentDataHolder
,PersistentDataViewHolder
,TileState
,TileStateInventoryHolder
Represents a captured state of a brewing stand.
-
Method Summary
Modifier and TypeMethodDescriptionint
How much time is left in the brewing cycle.int
Get the level of current fuel for brewing.Gets the inventory of the block represented by this block state.@org.jetbrains.annotations.Range(from=1L, to=2147483647L) int
Gets the recipe time for the brewing process which is used to compute the progress of the brewing process withgetBrewingTime()
.Gets the captured inventory snapshot of this container.void
setBrewingTime
(int brewTime) Set the time left before brewing completes.void
setFuelLevel
(int level) Set the level of current fuel for brewing.void
setRecipeBrewTime
(@org.jetbrains.annotations.Range(from=1L, to=2147483647L) int recipeBrewTime) Sets the recipe time for the brewing process which is used to compute the progress of the brewing process withgetBrewingTime()
.Methods inherited from interface org.bukkit.inventory.BlockInventoryHolder
getBlock
Methods inherited from interface org.bukkit.block.BlockState
copy, copy, getBlock, getBlockData, getChunk, getData, getDrops, getDrops, getDrops, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isCollidable, isPlaced, setBlockData, setData, setRawData, setType, update, update, update
Methods inherited from interface org.bukkit.block.Lockable
getLock, isLocked, setLock, setLockItem
Methods inherited from interface org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
Methods inherited from interface org.bukkit.Nameable
customName, customName, getCustomName, setCustomName
Methods inherited from interface org.bukkit.block.TileState
getPersistentDataContainer, isSnapshot
-
Method Details
-
getBrewingTime
int getBrewingTime()How much time is left in the brewing cycle.- Returns:
- Brew Time
-
setBrewingTime
void setBrewingTime(int brewTime) Set the time left before brewing completes.- Parameters:
brewTime
- Brewing time
-
setRecipeBrewTime
@Experimental void setRecipeBrewTime(@org.jetbrains.annotations.Range(from=1L, to=2147483647L) int recipeBrewTime) Sets the recipe time for the brewing process which is used to compute the progress of the brewing process withgetBrewingTime()
.- Parameters:
recipeBrewTime
- recipe brew time (in ticks)- Throws:
IllegalArgumentException
- if the recipe brew time is non-positive
-
getRecipeBrewTime
Gets the recipe time for the brewing process which is used to compute the progress of the brewing process withgetBrewingTime()
.- Returns:
- recipe brew time (in ticks)
-
getFuelLevel
int getFuelLevel()Get the level of current fuel for brewing.- Returns:
- The fuel level
-
setFuelLevel
void setFuelLevel(int level) Set the level of current fuel for brewing.- Parameters:
level
- fuel level
-
getInventory
Description copied from interface:TileStateInventoryHolder
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.
- Specified by:
getInventory
in interfaceInventoryHolder
- Specified by:
getInventory
in interfaceTileStateInventoryHolder
- Returns:
- the inventory
-
getSnapshotInventory
Description copied from interface:TileStateInventoryHolder
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.- Specified by:
getSnapshotInventory
in interfaceTileStateInventoryHolder
- Returns:
- the captured inventory snapshot
-