Enum Class TestForBlocksCommand.MatchMode

java.lang.Object
java.lang.Enum<TestForBlocksCommand.MatchMode>
net.glowstone.command.minecraft.TestForBlocksCommand.MatchMode
All Implemented Interfaces:
Serializable, Comparable<TestForBlocksCommand.MatchMode>, Constable
Enclosing class:
TestForBlocksCommand

public static enum TestForBlocksCommand.MatchMode extends Enum<TestForBlocksCommand.MatchMode>
  • Enum Constant Details

  • Method Details

    • values

      public static TestForBlocksCommand.MatchMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TestForBlocksCommand.MatchMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromCommandName

      public static TestForBlocksCommand.MatchMode fromCommandName(String commandName)
      Returns the MatchMode with a given subcommand name, or null if none match.
      Parameters:
      commandName - the subcommand name to look up.
      Returns:
      the mask mode.
    • isFiltered

      public abstract boolean isFiltered(GlowBlock fromBlock)
      Whether the source region's block is filtered from matching.
      Parameters:
      fromBlock - The block in the source region.
      Returns:
      true if the block is filtered, false otherwise.
    • matches

      public boolean matches(GlowBlock fromBlock, GlowBlock toBlock)
      Whether the block from the source region matches the block from the destination region.
      Parameters:
      fromBlock - The block from the source region.
      toBlock - The block from the destination region.
      Returns:
      true if the blocks match, false otherwise.
    • getCommandName

      public String getCommandName()