Package org.bukkit.block
Interface BrewingStand
- All Superinterfaces:
- BlockInventoryHolder,- BlockState,- Container,- InventoryHolder,- Lockable,- LockableTileState,- Metadatable,- Nameable,- PersistentDataHolder,- TileState
Represents a captured state of a brewing stand.
- 
Method SummaryModifier and TypeMethodDescriptionintHow much time is left in the brewing cycle.intGet the level of current fuel for brewing.Gets the inventory of the block represented by this block state.Gets the captured inventory snapshot of this container.voidsetBrewingTime(int brewTime) Set the time left before brewing completes.voidsetFuelLevel(int level) Set the level of current fuel for brewing.Methods inherited from interface org.bukkit.inventory.BlockInventoryHoldergetBlockMethods inherited from interface org.bukkit.block.BlockStategetBlock, getBlockData, getChunk, getData, getDrops, getDrops, getDrops, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isCollidable, isPlaced, setBlockData, setData, setRawData, setType, update, update, updateMethods inherited from interface org.bukkit.metadata.MetadatablegetMetadata, hasMetadata, removeMetadata, setMetadataMethods inherited from interface org.bukkit.NameablecustomName, customName, getCustomName, setCustomNameMethods inherited from interface org.bukkit.block.TileStategetPersistentDataContainer, isSnapshot
- 
Method Details- 
getBrewingTimeint getBrewingTime()How much time is left in the brewing cycle.- Returns:
- Brew Time
 
- 
setBrewingTimevoid setBrewingTime(int brewTime) Set the time left before brewing completes.- Parameters:
- brewTime- Brewing time
 
- 
getFuelLevelint getFuelLevel()Get the level of current fuel for brewing.- Returns:
- The fuel level
 
- 
setFuelLevelvoid setFuelLevel(int level) Set the level of current fuel for brewing.- Parameters:
- level- fuel level
 
- 
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
 
 
-