Package org.bukkit.material
Class TripwireHook
- java.lang.Object
-
- org.bukkit.material.MaterialData
-
- org.bukkit.material.SimpleAttachableMaterialData
-
- org.bukkit.material.TripwireHook
-
- All Implemented Interfaces:
Cloneable,Attachable,Directional,Redstone
@Deprecated public class TripwireHook extends SimpleAttachableMaterialData implements Redstone
Deprecated.all usage of MaterialData is deprecated and subject to removal. UseBlockData.Represents the tripwire hook
-
-
Constructor Summary
Constructors Constructor Description TripwireHook()Deprecated.TripwireHook(BlockFace dir)Deprecated.TripwireHook(Material type, byte data)Deprecated.Magic value
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TripwireHookclone()Deprecated.BlockFacegetAttachedFace()Deprecated.Gets the face that this block is attached onbooleanisActivated()Deprecated.Test if hook is currently activatedbooleanisConnected()Deprecated.Test if tripwire is connectedbooleanisPowered()Deprecated.Gets the current state of this Material, indicating if it's powered or unpoweredvoidsetActivated(boolean act)Deprecated.Set hook activated statevoidsetConnected(boolean connected)Deprecated.Set tripwire connection statevoidsetFacingDirection(BlockFace face)Deprecated.Sets the direction that this block is facing inStringtoString()Deprecated.-
Methods inherited from class org.bukkit.material.SimpleAttachableMaterialData
getFacing
-
Methods inherited from class org.bukkit.material.MaterialData
equals, getData, getItemType, hashCode, setData, toItemStack, toItemStack
-
-
-
-
Constructor Detail
-
TripwireHook
public TripwireHook()
Deprecated.
-
TripwireHook
@Deprecated public TripwireHook(Material type, byte data)
Deprecated.Magic value- Parameters:
type- the typedata- the raw data value
-
TripwireHook
public TripwireHook(BlockFace dir)
Deprecated.
-
-
Method Detail
-
isConnected
public boolean isConnected()
Deprecated.Test if tripwire is connected- Returns:
- true if connected, false if not
-
setConnected
public void setConnected(boolean connected)
Deprecated.Set tripwire connection state- Parameters:
connected- - true if connected, false if not
-
isActivated
public boolean isActivated()
Deprecated.Test if hook is currently activated- Returns:
- true if activated, false if not
-
setActivated
public void setActivated(boolean act)
Deprecated.Set hook activated state- Parameters:
act- - true if activated, false if not
-
setFacingDirection
public void setFacingDirection(BlockFace face)
Deprecated.Description copied from interface:DirectionalSets the direction that this block is facing in- Specified by:
setFacingDirectionin interfaceDirectional- Parameters:
face- The facing direction
-
getAttachedFace
public BlockFace getAttachedFace()
Deprecated.Description copied from interface:AttachableGets the face that this block is attached on- Specified by:
getAttachedFacein interfaceAttachable- Returns:
- BlockFace attached to
-
isPowered
public boolean isPowered()
Deprecated.Description copied from interface:RedstoneGets the current state of this Material, indicating if it's powered or unpowered
-
clone
public TripwireHook clone()
Deprecated.- Overrides:
clonein classSimpleAttachableMaterialData
-
toString
public String toString()
Deprecated.- Overrides:
toStringin classSimpleAttachableMaterialData
-
-