Class ExprHighestSolidBlock

java.lang.Object
ch.njol.skript.lang.util.SimpleExpression<T>
ch.njol.skript.expressions.base.PropertyExpression<F,​T>
ch.njol.skript.expressions.base.SimplePropertyExpression<org.bukkit.Location,​org.bukkit.block.Block>
ch.njol.skript.expressions.ExprHighestSolidBlock
All Implemented Interfaces:
Converter<org.bukkit.Location,​org.bukkit.block.Block>, Debuggable, Expression<org.bukkit.block.Block>, SyntaxElement

@Name("Highest Solid Block") @Description("Returns the highest solid block at the x and z coordinates of the world of a given location.") @Examples("highest block at location of arg-player") @Since("2.2-dev34") public class ExprHighestSolidBlock extends SimplePropertyExpression<org.bukkit.Location,​org.bukkit.block.Block>
  • Constructor Details

    • ExprHighestSolidBlock

      public ExprHighestSolidBlock()
  • Method Details

    • getPropertyName

      protected String getPropertyName()
      Specified by:
      getPropertyName in class SimplePropertyExpression<org.bukkit.Location,​org.bukkit.block.Block>
    • convert

      public @Nullable org.bukkit.block.Block convert(org.bukkit.Location location)
      Description copied from interface: Converter
      Converts an object from the given to the desired type.
      Specified by:
      convert in interface Converter<org.bukkit.Location,​org.bukkit.block.Block>
      Specified by:
      convert in class SimplePropertyExpression<org.bukkit.Location,​org.bukkit.block.Block>
      Parameters:
      location - The object to convert.
      Returns:
      the converted object
    • getReturnType

      public Class<? extends org.bukkit.block.Block> getReturnType()
      Description copied from interface: Expression
      Gets the return type of this expression.
      Returns:
      A supertype of any objects returned by Expression.getSingle(Event) and the component type of any arrays returned by Expression.getArray(Event)