Class LocationParser

java.lang.Object
com.ultikits.ultitools.abstracts.command.parser.LocationParser
All Implemented Interfaces:
TypeParser<org.bukkit.Location>

public class LocationParser extends Object implements TypeParser<org.bukkit.Location>
Type parser for Bukkit Location. Supports formats:
  • world,x,y,z
  • world,x,y,z,yaw,pitch
  • x,y,z (uses sender's world if available)

Bukkit Location 类型解析器。 支持格式:

  • 世界名,x,y,z
  • 世界名,x,y,z,yaw,pitch
  • x,y,z(使用发送者的世界)
Since:
6.2.0
  • Constructor Details

    • LocationParser

      public LocationParser()
  • Method Details

    • getPrimaryType

      public Class<org.bukkit.Location> getPrimaryType()
      Description copied from interface: TypeParser
      Gets the primary type this parser handles. 获取此解析器处理的主要类型。
      Specified by:
      getPrimaryType in interface TypeParser<org.bukkit.Location>
      Returns:
      the primary type class
    • getSupportedTypes

      public List<Class<?>> getSupportedTypes()
      Description copied from interface: TypeParser
      Gets all types this parser can handle, including array types. 获取此解析器可以处理的所有类型,包括数组类型。
      Specified by:
      getSupportedTypes in interface TypeParser<org.bukkit.Location>
      Returns:
      list of supported types
    • parse

      public org.bukkit.Location parse(String value) throws TypeParseException
      Description copied from interface: TypeParser
      Parses a string value into the target type. 将字符串值解析为目标类型。
      Specified by:
      parse in interface TypeParser<org.bukkit.Location>
      Parameters:
      value - the string value to parse
      Returns:
      the parsed value, or null if parsing fails
      Throws:
      TypeParseException - if parsing fails with an error
    • parseArray

      public org.bukkit.Location[] parseArray(String[] values) throws TypeParseException
      Description copied from interface: TypeParser
      Parses multiple string values into an array of the target type. Default implementation calls parse() for each value. 将多个字符串值解析为目标类型的数组。 默认实现为每个值调用 parse()。
      Specified by:
      parseArray in interface TypeParser<org.bukkit.Location>
      Parameters:
      values - the string values to parse
      Returns:
      the parsed array
      Throws:
      TypeParseException - if parsing fails with an error