Package org.bukkit.material
Class PistonBaseMaterial
java.lang.Object
org.bukkit.material.MaterialData
org.bukkit.material.PistonBaseMaterial
- All Implemented Interfaces:
java.lang.Cloneable
,Directional
,Redstone
public class PistonBaseMaterial extends MaterialData implements Directional, Redstone
Material data for the piston base block
-
Constructor Summary
Constructors Constructor Description PistonBaseMaterial(int type)
Deprecated.Magic valuePistonBaseMaterial(int type, byte data)
Deprecated.Magic valuePistonBaseMaterial(Material type)
PistonBaseMaterial(Material type, byte data)
Deprecated.Magic value -
Method Summary
Modifier and Type Method Description PistonBaseMaterial
clone()
BlockFace
getFacing()
Gets the direction this block is facingboolean
isPowered()
Gets the current state of this Material, indicating if it's powered or unpoweredboolean
isSticky()
Checks if this piston base is sticky, and returns true if sovoid
setFacingDirection(BlockFace face)
Sets the direction that this block is facing invoid
setPowered(boolean powered)
Sets the current state of this pistonMethods inherited from class org.bukkit.material.MaterialData
equals, getData, getItemType, getItemTypeId, hashCode, setData, toItemStack, toItemStack, toString
-
Constructor Details
-
PistonBaseMaterial
@Deprecated public PistonBaseMaterial(int type)Deprecated.Magic valueConstructs a PistonBaseMaterial- Parameters:
type
- the raw type id
-
PistonBaseMaterial
-
PistonBaseMaterial
@Deprecated public PistonBaseMaterial(int type, byte data)Deprecated.Magic valueConstructs a PistonBaseMaterial.- Parameters:
type
- the raw type iddata
- the raw data value
-
PistonBaseMaterial
Deprecated.Magic valueConstructs a PistonBaseMaterial.- Parameters:
type
- the material type to usedata
- the raw data value
-
-
Method Details
-
setFacingDirection
Description copied from interface:Directional
Sets the direction that this block is facing in- Specified by:
setFacingDirection
in interfaceDirectional
- Parameters:
face
- The facing direction
-
getFacing
Description copied from interface:Directional
Gets the direction this block is facing- Specified by:
getFacing
in interfaceDirectional
- Returns:
- the direction this block is facing
-
isPowered
public boolean isPowered()Description copied from interface:Redstone
Gets the current state of this Material, indicating if it's powered or unpowered -
setPowered
public void setPowered(boolean powered)Sets the current state of this piston- Parameters:
powered
- true if the piston is extended & powered, or false
-
isSticky
public boolean isSticky()Checks if this piston base is sticky, and returns true if so- Returns:
- true if this piston is "sticky", or false
-
clone
- Overrides:
clone
in classMaterialData
-