public interface Block extends Metadatable
Modifier and Type | Method and Description |
---|---|
boolean |
breakNaturally()
Breaks the block and spawns items as if a player had digged it
|
boolean |
breakNaturally(ItemStack tool)
Breaks the block and spawns items as if a player had digged it with a
specific tool
|
Biome |
getBiome()
Returns the biome that this block resides in
|
int |
getBlockPower()
Returns the redstone power being provided to this block
|
int |
getBlockPower(BlockFace face)
Returns the redstone power being provided to this block face
|
Chunk |
getChunk()
Gets the chunk which contains this block
|
byte |
getData()
Deprecated.
Magic value
|
Collection<ItemStack> |
getDrops()
Returns a list of items which would drop by destroying this block
|
Collection<ItemStack> |
getDrops(ItemStack tool)
Returns a list of items which would drop by destroying this block with
a specific tool
|
BlockFace |
getFace(Block block)
Gets the face relation of this block compared to the given block.
|
double |
getHumidity()
Gets the humidity of the biome of this block
|
byte |
getLightFromBlocks()
Get the amount of light at this block from nearby blocks.
|
byte |
getLightFromSky()
Get the amount of light at this block from the sky.
|
byte |
getLightLevel()
Gets the light level between 0-15
|
Location |
getLocation()
Gets the Location of the block
|
Location |
getLocation(Location loc)
Stores the location of the block in the provided Location object.
|
PistonMoveReaction |
getPistonMoveReaction()
Returns the reaction of the block when moved by a piston
|
Block |
getRelative(BlockFace face)
Gets the block at the given face
|
Block |
getRelative(BlockFace face,
int distance)
Gets the block at the given distance of the given face
|
Block |
getRelative(int modX,
int modY,
int modZ)
Gets the block at the given offsets
|
BlockState |
getState()
Captures the current state of this block.
|
double |
getTemperature()
Gets the temperature of the biome of this block
|
Material |
getType()
Gets the type of this block
|
int |
getTypeId()
Deprecated.
Magic value
|
World |
getWorld()
Gets the world which contains this Block
|
int |
getX()
Gets the x-coordinate of this block
|
int |
getY()
Gets the y-coordinate of this block
|
int |
getZ()
Gets the z-coordinate of this block
|
boolean |
isBlockFaceIndirectlyPowered(BlockFace face)
Returns true if the block face is being indirectly powered by Redstone.
|
boolean |
isBlockFacePowered(BlockFace face)
Returns true if the block face is being powered by Redstone.
|
boolean |
isBlockIndirectlyPowered()
Returns true if the block is being indirectly powered by Redstone.
|
boolean |
isBlockPowered()
Returns true if the block is being powered by Redstone.
|
boolean |
isEmpty()
Checks if this block is empty.
|
boolean |
isLiquid()
Checks if this block is liquid.
|
void |
setBiome(Biome bio)
Sets the biome that this block resides in
|
void |
setData(byte data)
Deprecated.
Magic value
|
void |
setData(byte data,
boolean applyPhysics)
Deprecated.
Magic value
|
void |
setType(Material type)
Sets the type of this block
|
void |
setType(Material type,
boolean applyPhysics)
Sets the type of this block
|
boolean |
setTypeId(int type)
Deprecated.
Magic value
|
boolean |
setTypeId(int type,
boolean applyPhysics)
Deprecated.
Magic value
|
boolean |
setTypeIdAndData(int type,
byte data,
boolean applyPhysics)
Deprecated.
Magic value
|
getMetadata, hasMetadata, removeMetadata, setMetadata
@Deprecated byte getData()
Block getRelative(int modX, int modY, int modZ)
modX
- X-coordinate offsetmodY
- Y-coordinate offsetmodZ
- Z-coordinate offsetBlock getRelative(BlockFace face)
This method is equal to getRelative(face, 1)
face
- Face of this block to returngetRelative(BlockFace, int)
Block getRelative(BlockFace face, int distance)
For example, the following method places water at 100,102,100; two blocks above 100,100,100.
Block block = world.getBlockAt(100, 100, 100); Block shower = block.getRelative(BlockFace.UP, 2); shower.setType(Material.WATER);
face
- Face of this block to returndistance
- Distance to get the block atMaterial getType()
@Deprecated int getTypeId()
byte getLightLevel()
byte getLightFromSky()
Any light given from other sources (such as blocks like torches) will be ignored.
byte getLightFromBlocks()
Any light given from other sources (such as the sun) will be ignored.
World getWorld()
int getX()
int getY()
int getZ()
Location getLocation()
Location getLocation(Location loc)
If the provided Location is null this method does nothing and returns null.
loc
- the location to copy intoChunk getChunk()
@Deprecated void setData(byte data)
data
- New block specific metadata@Deprecated void setData(byte data, boolean applyPhysics)
data
- New block specific metadataapplyPhysics
- False to cancel physics from the changed block.void setType(Material type)
type
- Material to change this block tovoid setType(Material type, boolean applyPhysics)
type
- Material to change this block toapplyPhysics
- False to cancel physics on the changed block.@Deprecated boolean setTypeId(int type)
type
- Type-Id to change this block to@Deprecated boolean setTypeId(int type, boolean applyPhysics)
type
- Type-Id to change this block toapplyPhysics
- False to cancel physics on the changed block.@Deprecated boolean setTypeIdAndData(int type, byte data, boolean applyPhysics)
type
- Type-Id to change this block todata
- The data value to change this block toapplyPhysics
- False to cancel physics on the changed blockBlockFace getFace(Block block)
For example:
Block current = world.getBlockAt(100, 100, 100);
Block target = world.getBlockAt(100, 101, 100);
current.getFace(target) == BlockFace.Up;
block
- Block to compare against this blockBlockState getState()
The returned object will never be updated, and you are not guaranteed that (for example) a sign is still a sign after you capture its state.
Biome getBiome()
void setBiome(Biome bio)
bio
- new Biome type for this blockboolean isBlockPowered()
boolean isBlockIndirectlyPowered()
boolean isBlockFacePowered(BlockFace face)
face
- The block faceboolean isBlockFaceIndirectlyPowered(BlockFace face)
face
- The block faceint getBlockPower(BlockFace face)
face
- the face of the block to query or BlockFace.SELF for the
block itselfint getBlockPower()
boolean isEmpty()
A block is considered empty when getType()
returns Material.AIR
.
boolean isLiquid()
A block is considered liquid when getType()
returns Material.WATER
, Material.STATIONARY_WATER
, Material.LAVA
or Material.STATIONARY_LAVA
.
double getTemperature()
double getHumidity()
PistonMoveReaction getPistonMoveReaction()
boolean breakNaturally()
boolean breakNaturally(ItemStack tool)
tool
- The tool or item in hand used for diggingCollection<ItemStack> getDrops()
Collection<ItemStack> getDrops(ItemStack tool)
tool
- The tool or item in hand used for diggingCopyright © 2016. All rights reserved.