Package org.bukkit.material
Class Stairs
- java.lang.Object
-
- org.bukkit.material.MaterialData
-
- org.bukkit.material.Stairs
-
- All Implemented Interfaces:
Cloneable
,Directional
@Deprecated public class Stairs extends MaterialData implements Directional
Deprecated.all usage of MaterialData is deprecated and subject to removal. UseBlockData
.Represents stairs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Stairs
clone()
Deprecated.BlockFace
getAscendingDirection()
Deprecated.BlockFace
getDescendingDirection()
Deprecated.BlockFace
getFacing()
Deprecated.Gets the direction this block is facingboolean
isInverted()
Deprecated.Test if step is invertedvoid
setFacingDirection(BlockFace face)
Deprecated.Set the direction the stair part of the block is facingvoid
setInverted(boolean inv)
Deprecated.Set step inverted stateString
toString()
Deprecated.-
Methods inherited from class org.bukkit.material.MaterialData
equals, getData, getItemType, hashCode, setData, toItemStack, toItemStack
-
-
-
-
Constructor Detail
-
Stairs
public Stairs(Material type)
Deprecated.
-
Stairs
@Deprecated public Stairs(Material type, byte data)
Deprecated.Magic value- Parameters:
type
- the typedata
- the raw data value
-
-
Method Detail
-
getAscendingDirection
public BlockFace getAscendingDirection()
Deprecated.- Returns:
- the direction the stairs ascend towards
-
getDescendingDirection
public BlockFace getDescendingDirection()
Deprecated.- Returns:
- the direction the stairs descend towards
-
setFacingDirection
public void setFacingDirection(BlockFace face)
Deprecated.Set the direction the stair part of the block is facing- Specified by:
setFacingDirection
in interfaceDirectional
- Parameters:
face
- The facing direction
-
getFacing
public BlockFace getFacing()
Deprecated.Description copied from interface:Directional
Gets the direction this block is facing- Specified by:
getFacing
in interfaceDirectional
- Returns:
- the direction the stair part of the block is facing
-
isInverted
public boolean isInverted()
Deprecated.Test if step is inverted- Returns:
- true if inverted (top half), false if normal (bottom half)
-
setInverted
public void setInverted(boolean inv)
Deprecated.Set step inverted state- Parameters:
inv
- - true if step is inverted (top half), false if step is normal (bottom half)
-
toString
public String toString()
Deprecated.- Overrides:
toString
in classMaterialData
-
clone
public Stairs clone()
Deprecated.- Overrides:
clone
in classMaterialData
-
-