程序包 org.bukkit.block
接口 BrewingStand
- 所有超级接口:
BlockState
,Container
,InventoryHolder
,Lockable
,Metadatable
,Nameable
代表酿造台(快照).
-
方法概要
修饰符和类型方法说明int
返回酿造还需多长时间.int
获取酿造台当前剩余的燃料.Gets the inventory of the block represented by this block state.Gets the captured inventory snapshot of this container.void
setBrewingTime
(int brewTime) 设置酿造还需多长时间完成.void
setFuelLevel
(int level) 设置酿造台当前剩余的燃料.从接口继承的方法 org.bukkit.block.BlockState
getBlock, getChunk, getData, getLightLevel, getLocation, getLocation, getRawData, getType, getTypeId, getWorld, getX, getY, getZ, isPlaced, setData, setRawData, setType, setTypeId, update, update, update
从接口继承的方法 org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
从接口继承的方法 org.bukkit.Nameable
getCustomName, setCustomName
-
方法详细资料
-
getBrewingTime
int getBrewingTime()返回酿造还需多长时间.原文:How much time is left in the brewing cycle
- 返回:
- 酿造时间
-
setBrewingTime
void setBrewingTime(int brewTime) 设置酿造还需多长时间完成.原文:Set the time left before brewing completes.
- 参数:
brewTime
- 酿造时间
-
getFuelLevel
int getFuelLevel()获取酿造台当前剩余的燃料.原文:Get the level of current fuel for brewing.
- 返回:
- 酿造台当前剩余的燃料
-
setFuelLevel
void setFuelLevel(int level) 设置酿造台当前剩余的燃料.原文:Set the level of current fuel for brewing.
- 参数:
level
- 酿造台当前剩余的燃料
-
getInventory
BrewerInventory getInventory()从接口复制的说明:Container
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.
- 指定者:
getInventory
在接口中Container
- 指定者:
getInventory
在接口中InventoryHolder
- 返回:
- the inventory
-
getSnapshotInventory
BrewerInventory getSnapshotInventory()从接口复制的说明:Container
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.- 指定者:
getSnapshotInventory
在接口中Container
- 返回:
- the captured inventory snapshot
-