接口 ConfigurationSection

所有已知子接口:
Configuration
所有已知实现类:
FileConfiguration, MemoryConfiguration, MemorySection, YamlConfiguration

public interface ConfigurationSection
Configuration的基类. 所有用于扩展配置文件读取的类都应当实现以下方法.

Represents a section of a Configuration

  • 方法详细资料

    • getKeys

      @NotNull @NotNull Set<String> getKeys(boolean deep)
      获取此配置文件的键集合.

      如果为 true, 则返回包括所有的能访问到的键的集合. 类似于获取硬盘中第一层目录还是遍历全部子目录.

      例如:

      top1. Second1

      top1. Second2

      top2. Second1

      top2. Second2

      原文: Gets a set containing all keys in this section.

      If deep is set to true, then this will contain all the keys within any child ConfigurationSections (and their children, etc). These will be in a valid path notation for you to use.

      If deep is set to false, then this will contain only the keys of any direct children, and not their own children.

      参数:
      deep - 获取全部键, 或者仅仅获取表层键.
      返回:
      将返回一个 set, 装载着符合要求的键.
    • getValues

      @NotNull @NotNull Map<String,Object> getValues(boolean deep)
      获取这个配置文件的键值集合.

      如果为 true, 则返回包括所有的能访问到的键和值的集合. 类似于获取硬盘中第一层目录还是遍历全部子目录.

      如果为 false, 则返回表层的键和值的集合.

      原文: Gets a Map containing all keys and their values for this section.

      If deep is set to true, then this will contain all the keys and values within any child ConfigurationSections (and their children, etc). These keys will be in a valid path notation for you to use.

      If deep is set to false, then this will contain only the keys and values of any direct children, and not their own children.

      参数:
      deep - 获取全部键值集合(true), 或者仅仅获取表层键值集合(false).
      返回:
      返回一个 Map.
    • contains

      boolean contains(@NotNull @NotNull String path)
      检查 ConfigurationSection 是否包含指定路径.

      如果这个路径不存在, 但已指定一个缺省值, 也将返回 true.

      原文: Checks if this ConfigurationSection contains the given path.

      If the value for the requested path does not exist but a default value has been specified, this will return true.

      参数:
      path - 要检查的路径
      返回:
      如果此部分包含请求的路径,可以通过默认的或者被设置.
      抛出:
      IllegalArgumentException - 如果路径是 null 时抛出此异常.
    • contains

      boolean contains(@NotNull @NotNull String path, boolean ignoreDefault)
      Checks if this ConfigurationSection contains the given path.

      If the value for the requested path does not exist, the boolean parameter of true has been specified, a default value for the path exists, this will return true.

      If a boolean parameter of false has been specified, true will only be returned if there is a set value for the specified path.

      参数:
      path - Path to check for existence.
      ignoreDefault - Whether or not to ignore if a default value for the specified path exists.
      返回:
      True if this section contains the requested path, or if a default value exist and the boolean parameter for this method is true.
      抛出:
      IllegalArgumentException - Thrown when path is null.
    • isSet

      boolean isSet(@NotNull @NotNull String path)
      检查指定路径是否是 Set.

      如果路径存在, 但不是 Set, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if this ConfigurationSection has a value set for the given path.

      If the value for the requested path does not exist but a default value has been specified, this will still return false.

      参数:
      path - 检查路径.
      返回:
      True if this section contains the requested path, regardless of having a default.
      抛出:
      IllegalArgumentException - 如果路径为 null 则会抛出此异常.
    • getCurrentPath

      @Nullable @Nullable String getCurrentPath()
      从根 Configuration 中获取这个 ConfigurationSection 的路径.

      如果这个 ConfigurationSection 已经是根目录, 将返回一个空字符串.

      如果这个 ConfigurationSection 不属于任何根目录, 将返回 null.

      如果要获取这个 ConfigurationSection 名字,也就是路径中的最后一节, 你应该使用 getName() 来获取.

      原文: Gets the path of this ConfigurationSection from its root Configuration.

      For any Configuration themselves, this will return an empty string.

      If the section is no longer contained within its root for any reason, such as being replaced with a different value, this may return null.

      To retrieve the single name of this section, that is, the final part of the path returned by this method, you may use getName().

      返回:
      这个片段相对于其根的路径.
    • getName

      Gets the name of this individual ConfigurationSection, in the path.

      This will always be the final part of getCurrentPath(), unless the section is orphaned.

      返回:
      Name of this section
    • getRoot

      Gets the root Configuration that contains this ConfigurationSection

      For any Configuration themselves, this will return its own object.

      If the section is no longer contained within its root for any reason, such as being replaced with a different value, this may return null.

      返回:
      Root configuration containing this section.
    • getParent

      Gets the parent ConfigurationSection that directly contains this ConfigurationSection.

      For any Configuration themselves, this will return null.

      If the section is no longer contained within its parent for any reason, such as being replaced with a different value, this may return null.

      返回:
      Parent section containing this section.
    • get

      在指定路径获取一个 Object 类型的值.

      如果这个 Object 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 Object 不存在, 并且没有指定缺省值, 则返回 null.

      原文: Gets the requested Object by path.

      If the Object does not exist but a default value has been specified, this will return the default value. If the Object does not exist and no default value was specified, this will return null.

      参数:
      path - 获取 Object 的路径.
      返回:
      返回一个 Object.
    • get

      在指定路径上获取一个 Object , 如果无法获取, 则直接返回默认值.

      如果 Object 无法在 Configuration 中被获取, 则不会尝试去缺省列表中去寻找, 而是直接返回指定的默认值.

      原文: Gets the requested Object by path, returning a default value if not found.

      If the Object does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 Object 的路径.
      def - 当指定路径上没有值, 返回这个值.
      返回:
      返回一个Object.
    • set

      Sets the specified path to the given value.

      If value is null, the entry will be removed. Any existing entry will be replaced, regardless of what the new value is.

      Some implementations may have limitations on what you may store. See their individual javadocs for details. No implementations should allow you to store Configurations or ConfigurationSections, please use createSection(java.lang.String) for that.

      参数:
      path - Path of the object to set.
      value - New value to set the path to.
    • createSection

      Creates an empty ConfigurationSection at the specified path.

      Any value that was previously set at this path will be overwritten. If the previous value was itself a ConfigurationSection, it will be orphaned.

      参数:
      path - Path to create the section at.
      返回:
      Newly created section
    • createSection

      Creates a ConfigurationSection at the specified path, with specified values.

      Any value that was previously set at this path will be overwritten. If the previous value was itself a ConfigurationSection, it will be orphaned.

      参数:
      path - Path to create the section at.
      map - The values to used.
      返回:
      Newly created section
    • getString

      在指定路径获取一个 String 类型的值.

      如果这个 String 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 String 不存在, 并且没有指定缺省值, 则返回 null.

      原文: Gets the requested String by path.

      If the String does not exist but a default value has been specified, this will return the default value. If the String does not exist and no default value was specified, this will return null.

      参数:
      path - 获取 String 的路径.
      返回:
      返回一个 String.
    • getString

      @Contract("_, !null -> !null") @Nullable @Nullable String getString(@NotNull @NotNull String path, @Nullable @Nullable String def)
      在指定路径上获取一个 String , 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 String, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested String by path, returning a default value if not found.

      If the String does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 String 的路径.
      def - 当指定路径上没有值, 或者不是 String 类型时, 返回这个值.
      返回:
      返回一个 String.
    • isString

      boolean isString(@NotNull @NotNull String path)
      检查指定路径是否是 String.

      如果路径存在, 但不是 String, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a String.

      If the path exists but is not a String, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a String and return appropriately.

      参数:
      path - 检查指定路径是否是 String.
      返回:
      指定路径是否是 String.
    • getInt

      int getInt(@NotNull @NotNull String path)
      在指定路径获取一个 int 类型的值.

      如果这个 int 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 int 不存在, 并且没有指定缺省值, 则返回 0 .

      原文: Gets the requested int by path.

      If the int does not exist but a default value has been specified, this will return the default value. If the int does not exist and no default value was specified, this will return 0.

      参数:
      path - 获取 int 的路径.
      返回:
      返回一个 int.
    • getInt

      int getInt(@NotNull @NotNull String path, int def)
      在指定路径上获取一个 int, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 int, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested int by path, returning a default value if not found.

      If the int does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 int 的路径.
      def - 当指定路径上没有值, 或者不是 int 类型时, 返回这个值.
      返回:
      返回一个 int.
    • isInt

      boolean isInt(@NotNull @NotNull String path)
      检查指定路径是否是 int.

      如果路径存在, 但不是 int, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a int.

      If the path exists but is not a int, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a int and return appropriately.

      参数:
      path - 检查指定路径是否是 int.
      返回:
      指定路径是否是 int.
    • getBoolean

      boolean getBoolean(@NotNull @NotNull String path)
      在指定路径获取一个 boolean 类型的值.

      如果这个 boolean 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 boolean 不存在, 并且没有指定缺省值, 则返回 false.

      原文: Gets the requested boolean by path.

      If the boolean does not exist but a default value has been specified, this will return the default value. If the boolean does not exist and no default value was specified, this will return false.

      参数:
      path - 获取 boolean 的路径.
      返回:
      返回一个 boolean.
    • getBoolean

      boolean getBoolean(@NotNull @NotNull String path, boolean def)
      在指定路径上获取一个 boolean, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 boolean, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested boolean by path, returning a default value if not found.

      If the boolean does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 boolean 的路径.
      def - 当指定路径上没有值, 或者不是 boolean 类型时, 返回这个值.
      返回:
      返回一个 boolean.
    • isBoolean

      boolean isBoolean(@NotNull @NotNull String path)
      检查指定路径是否是 boolean.

      如果路径存在, 但不是 boolean, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a boolean.

      If the path exists but is not a boolean, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a boolean and return appropriately.

      参数:
      path - 检查指定路径是否是 boolean.
      返回:
      指定路径是否是 boolean.
    • getDouble

      double getDouble(@NotNull @NotNull String path)
      在指定路径获取一个 double 类型的值.

      如果这个 double 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 double 不存在, 并且没有指定缺省值, 则返回0.

      原文: Gets the requested double by path.

      If the double does not exist but a default value has been specified, this will return the default value. If the double does not exist and no default value was specified, this will return 0.

      参数:
      path - 获取double的路径.
      返回:
      返回一个double.
    • getDouble

      double getDouble(@NotNull @NotNull String path, double def)
      在指定路径上获取一个double, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 double, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested double by path, returning a default value if not found.

      If the double does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 double 的路径.
      def - 当指定路径上没有值, 或者不是 double 类型时, 返回这个值.
      返回:
      返回一个 double.
    • isDouble

      boolean isDouble(@NotNull @NotNull String path)
      检查指定路径是否是 double.

      如果路径存在, 但不是 double, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a double.

      If the path exists but is not a double, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a double and return appropriately.

      参数:
      path - 检查指定路径是否是 double.
      返回:
      指定路径是否是 double.
    • getLong

      long getLong(@NotNull @NotNull String path)
      在指定路径获取一个 long 类型的值.

      如果这个 long 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 long 不存在, 并且没有指定缺省值, 则返回 0.

      原文: Gets the requested long by path.

      If the long does not exist but a default value has been specified, this will return the default value. If the long does not exist and no default value was specified, this will return 0.

      参数:
      path - 获取long的路径.
      返回:
      返回一个long.
    • getLong

      long getLong(@NotNull @NotNull String path, long def)
      在指定路径上获取一个 long, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 long, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested long by path, returning a default value if not found.

      If the long does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 long 的路径.
      def - 当指定路径上没有值, 或者不是 long 类型时, 返回这个值.
      返回:
      返回一个 long.
    • isLong

      boolean isLong(@NotNull @NotNull String path)
      检查指定路径是否是 long.

      如果路径存在, 但不是 long, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a long.

      If the path exists but is not a long, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a long and return appropriately.

      参数:
      path - 检查指定路径是否是 long.
      返回:
      指定路径是否是 long.
    • getList

      在指定路径获取一个 List 类型的值.

      如果这个 List 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 List 不存在, 并且没有指定缺省值, 则返回 null.

      原文: Gets the requested List by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return null.

      参数:
      path - 获取 List 的路径.
      返回:
      返回一个 List.
    • getList

      @Contract("_, !null -> !null") @Nullable @Nullable List<?> getList(@NotNull @NotNull String path, @Nullable @Nullable List<?> def)
      在指定路径上获取一个 List, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 List, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested List by path, returning a default value if not found.

      If the List does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 List 的路径.
      def - 当指定路径上没有值, 或者不是 List 类型时, 返回这个值.
      返回:
      返回一个 List.
    • isList

      boolean isList(@NotNull @NotNull String path)
      检查指定路径是否是 List.

      如果路径存在, 但不是 List, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a List.

      If the path exists but is not a List, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a List and return appropriately.

      参数:
      path - 检查指定路径是否是 List.
      返回:
      指定路径是否是 List.
    • getStringList

      在指定路径获取一个 List<String>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 String, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of String by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a String if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<String> 的路径.
      返回:
      返回一个 List<String>.
    • getIntegerList

      在指定路径获取一个 List<Integer>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Integer, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Integer by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Integer if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Integer> 的路径.
      返回:
      返回一个 List<Integer>.
    • getBooleanList

      在指定路径获取一个 List<Boolean>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Boolean, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Boolean by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Boolean if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Boolean> 的路径.
      返回:
      返回一个 List<Boolean>.
    • getDoubleList

      在指定路径获取一个 List<Double>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Double, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Double by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Double if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Double>的路径.
      返回:
      要获取 List<Double>.
    • getFloatList

      在指定路径获取一个 List<Float>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Float, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Float by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Float if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Float>的路径.
      返回:
      返回一个 List<Float>.
    • getLongList

      在指定路径获取一个 List<Long>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为Long, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Long by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Long if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Long>的路径.
      返回:
      返回一个 List<Long>.
    • getByteList

      在指定路径获取一个 List<Byte>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Byte, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Byte by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Byte if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Byte>的路径.
      返回:
      返回一个 List<Byte>.
    • getCharacterList

      在指定路径获取一个 List<Character>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Character, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Character by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Character if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Character>的路径.
      返回:
      返回一个 List<Character>.
    • getShortList

      在指定路径获取一个 List<Short>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Short, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Short by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Short if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Short>的路径.
      返回:
      返回一个 List<Short>.
    • getMapList

      @NotNull @NotNull List<Map<?,?>> getMapList(@NotNull @NotNull String path)
      在指定路径获取一个 List<Maps>.

      如果列表不存在,但已指定一个缺省值,这将返回默认值.

      如果列表不存在,并且没有指定缺省值,这将返回一个空的列表.

      此方法会尽可能的将 List 中所有的项转化为 Map, 但是如果值本身不兼容, 将会发生不可预计的状况.

      原文: Gets the requested List of Maps by path.

      If the List does not exist but a default value has been specified, this will return the default value. If the List does not exist and no default value was specified, this will return an empty List.

      This method will attempt to cast any values into a Map if possible, but may miss any values out if they are not compatible.

      参数:
      path - 要获取 List<Maps>的路径.
      返回:
      返回一个 List<Maps>.
    • getObject

      @Nullable <T> T getObject(@NotNull @NotNull String path, @NotNull @NotNull Class<T> clazz)
      Gets the requested object at the given path. If the Object does not exist but a default value has been specified, this will return the default value. If the Object does not exist and no default value was specified, this will return null. Note: For example #getObject(path, String.class) is not equivalent to #getString(path) because #getString(path) converts internally all Objects to Strings. However, #getObject(path, Boolean.class) is equivalent to #getBoolean(path) for example.
      类型参数:
      T - the type of the requested object
      参数:
      path - the path to the object.
      clazz - the type of the requested object
      返回:
      Requested object
    • getObject

      @Contract("_, _, !null -> !null") @Nullable <T> T getObject(@NotNull @NotNull String path, @NotNull @NotNull Class<T> clazz, @Nullable T def)
      Gets the requested object at the given path, returning a default value if not found If the Object does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration. Note: For example #getObject(path, String.class, def) is not equivalent to #getString(path, def) because #getString(path, def) converts internally all Objects to Strings. However, #getObject(path, Boolean.class, def) is equivalent to #getBoolean(path, def) for example.
      类型参数:
      T - the type of the requested object
      参数:
      path - the path to the object.
      clazz - the type of the requested object
      def - the default object to return if the object is not present at the path
      返回:
      Requested object
    • getSerializable

      @Nullable <T extends ConfigurationSerializable> T getSerializable(@NotNull @NotNull String path, @NotNull @NotNull Class<T> clazz)
      Gets the requested ConfigurationSerializable object at the given path. If the Object does not exist but a default value has been specified, this will return the default value. If the Object does not exist and no default value was specified, this will return null.
      类型参数:
      T - the type of ConfigurationSerializable
      参数:
      path - the path to the object.
      clazz - the type of ConfigurationSerializable
      返回:
      Requested ConfigurationSerializable object
    • getSerializable

      @Contract("_, _, !null -> !null") @Nullable <T extends ConfigurationSerializable> T getSerializable(@NotNull @NotNull String path, @NotNull @NotNull Class<T> clazz, @Nullable T def)
      Gets the requested ConfigurationSerializable object at the given path, returning a default value if not found If the Object does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.
      类型参数:
      T - the type of ConfigurationSerializable
      参数:
      path - the path to the object.
      clazz - the type of ConfigurationSerializable
      def - the default object to return if the object is not present at the path
      返回:
      Requested ConfigurationSerializable object
    • getVector

      在指定路径获取一个Vector类型的值.

      如果这个Vector不存在, 但已指定一个缺省值, 这将返回缺省值. Vector. 如果这个Vector不存在, 并且没有指定缺省值, 则返回null.

      原文: Gets the requested Vector by path.

      If the Vector does not exist but a default value has been specified, this will return the default value. If the Vector does not exist and no default value was specified, this will return null.

      参数:
      path - 获取Vector的路径.
      返回:
      返回一个Vector.
    • getVector

      @Contract("_, !null -> !null") @Nullable @Nullable Vector getVector(@NotNull @NotNull String path, @Nullable @Nullable Vector def)
      在指定路径上获取一个Vector, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 Vector, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested Vector by path, returning a default value if not found.

      If the Vector does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 Vector 的路径.
      def - 当指定路径上没有值, 或者不是 Vector 类型时, 返回这个值.
      返回:
      返回一个 Vectorr.
    • isVector

      boolean isVector(@NotNull @NotNull String path)
      检查指定路径是否是 Vector .

      如果路径存在, 但不是 Vector , 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a Vector.

      If the path exists but is not a Vector, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a Vector and return appropriately.

      参数:
      path - 检查指定路径是否是 Vector .
      返回:
      指定路径是否是 Vector .
    • getOfflinePlayer

      在指定路径获取一个 OfflinePlayer 类型的值.

      如果这个 OfflinePlayer 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 OfflinePlayer 不存在, 并且没有指定缺省值, 则返回 null.

      原文: Gets the requested OfflinePlayer by path.

      If the OfflinePlayer does not exist but a default value has been specified, this will return the default value. If the OfflinePlayer does not exist and no default value was specified, this will return null.

      参数:
      path - 获取 OfflinePlayer 的路径.
      返回:
      返回一个 OfflinePlayer.
    • getOfflinePlayer

      在指定路径上获取一个 OfflinePlayer, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 OfflinePlayer, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested OfflinePlayer by path, returning a default value if not found.

      If the OfflinePlayer does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 OfflinePlayer 的路径.
      def - 当指定路径上没有值, 或者不是 OfflinePlayer 类型时, 返回这个值.
      返回:
      返回一个 OfflinePlayer.
    • isOfflinePlayer

      boolean isOfflinePlayer(@NotNull @NotNull String path)
      检查指定路径是否是 OfflinePlayer.

      如果路径存在, 但不是 OfflinePlayer, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a OfflinePlayer.

      If the path exists but is not a OfflinePlayer, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a OfflinePlayer and return appropriately.

      参数:
      path - 检查指定路径是否是 OfflinePlayer.
      返回:
      指定路径是否是 OfflinePlayer.
    • getItemStack

      在指定路径获取一个 ItemStack 类型的值.

      如果这个 ItemStack 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 ItemStack 不存在, 并且没有指定缺省值, 则返回 null.

      原文: Gets the requested ItemStack by path.

      If the ItemStack does not exist but a default value has been specified, this will return the default value. If the ItemStack does not exist and no default value was specified, this will return null.

      参数:
      path - 获取 ItemStack 的路径.
      返回:
      返回一个 ItemStack.
    • getItemStack

      @Contract("_, !null -> !null") @Nullable @Nullable ItemStack getItemStack(@NotNull @NotNull String path, @Nullable @Nullable ItemStack def)
      在指定路径上获取一个 ItemStack, 如果无法获取, 则直接返回默认值.

      如果无法获取到一个 ItemStack, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested ItemStack by path, returning a default value if not found.

      If the ItemStack does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取ItemStack的路径.
      def - 当指定路径上没有值, 或者不是ItemStack类型时, 返回这个值.
      返回:
      返回一个ItemStack.
    • isItemStack

      boolean isItemStack(@NotNull @NotNull String path)
      检查指定路径是否是 ItemStack.

      如果路径存在, 但不是 ItemStack, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a ItemStack.

      If the path exists but is not a ItemStack, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a ItemStack and return appropriately.

      参数:
      path - 检查指定路径是否是 ItemStack.
      返回:
      指定路径是否是 ItemStack.
    • getColor

      在指定路径获取一个Color类型的值.

      如果这个Color不存在, 但已指定一个缺省值, 这将返回缺省值. Color.

      如果这个Color不存在, 并且没有指定缺省值, 则返回null.

      原文: Gets the requested Color by path.

      If the Color does not exist but a default value has been specified, this will return the default value. If the Color does not exist and no default value was specified, this will return null.

      参数:
      path - 获取Color的路径.
      返回:
      返回一个Color.
    • getColor

      @Contract("_, !null -> !null") @Nullable @Nullable Color getColor(@NotNull @NotNull String path, @Nullable @Nullable Color def)
      在指定路径上获取一个 Color, 如果无法获取, 则直接返回指定默认值.

      如果无法获取到一个 Color, 将不会尝试去缺省列表中去获取, 而是直接返回指定的默认值.

      原文: Gets the requested Color by path, returning a default value if not found.

      If the Color does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - 获取 Color 的路径.
      def - 当指定路径上没有值, 或者不是 Color 类型时, 返回这个值.
      返回:
      返回一个 Color.
    • isColor

      boolean isColor(@NotNull @NotNull String path)
      检查指定路径是否是 Color.

      如果路径存在, 但不是 Color, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a Color.

      If the path exists but is not a Color, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a Color and return appropriately.

      参数:
      path - 检查指定路径是否是 Color.
      返回:
      指定路径是否是 Color.
    • getLocation

      Gets the requested Location by path.

      If the Location does not exist but a default value has been specified, this will return the default value. If the Location does not exist and no default value was specified, this will return null.

      参数:
      path - Path of the Location to get.
      返回:
      Requested Location.
    • getLocation

      @Contract("_, !null -> !null") @Nullable @Nullable Location getLocation(@NotNull @NotNull String path, @Nullable @Nullable Location def)
      Gets the requested Location by path, returning a default value if not found.

      If the Location does not exist then the specified default value will returned regardless of if a default has been identified in the root Configuration.

      参数:
      path - Path of the Location to get.
      def - The default value to return if the path is not found or is not a Location.
      返回:
      Requested Location.
    • isLocation

      boolean isLocation(@NotNull @NotNull String path)
      Checks if the specified path is a Location.

      If the path exists but is not a Location, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a Location and return appropriately.

      参数:
      path - Path of the Location to check.
      返回:
      Whether or not the specified path is a Location.
    • getConfigurationSection

      获取一个 ConfigurationSection ,它是一个以指定路径作为基点的新的配置项,修改会同步.

      如果这个 ConfigurationSection 不存在, 但已指定一个缺省值, 这将返回缺省值.

      如果这个 ConfigurationSection 不存在, 并且没有指定缺省值, 则返回 null.

      更人性化的解释: 现在有一个配置文件如下

       root: 
         branch1:
           branch1_1: something
           branch1_2: something
         branch2: 
           branch2_1: something
           branch3_2: something
       
      如果调用 getConfigurationSection(java.lang.String) 参数为("branch1") ,则会返回
         branch1:
           branch1_1: something
           branch1_2: something
       
      并且修改会同步

      原文: Gets the requested ConfigurationSection by path.

      If the ConfigurationSection does not exist but a default value has been specified, this will return the default value. If the ConfigurationSection does not exist and no default value was specified, this will return null.

      参数:
      path - 获取 ConfigurationSection 的路径.
      返回:
      返回一个 ConfigurationSection.
    • isConfigurationSection

      boolean isConfigurationSection(@NotNull @NotNull String path)
      检查指定路径是否是 ConfigurationSection.

      如果路径存在, 但不是 ConfigurationSection, 则返回 false.

      如果路径不存在, 则返回 false.

      如果路径不存在, 但在缺省列表中存在该路径, 则在缺省列表中重复匹配该规则, 直到返回一个适当的值.

      原文: Checks if the specified path is a ConfigurationSection.

      If the path exists but is not a ConfigurationSection, this will return false. If the path does not exist, this will return false. If the path does not exist but a default value has been specified, this will check if that default value is a ConfigurationSection and return appropriately.

      参数:
      path - 检查指定路径是否是 ConfigurationSection.
      返回:
      指定路径是否是 ConfigurationSection.
    • getDefaultSection

      Gets the equivalent ConfigurationSection from the default Configuration defined in getRoot().

      If the root contains no defaults, or the defaults doesn't contain a value for this path, or the value at this path is not a ConfigurationSection then this will return null.

      返回:
      Equivalent section in root configuration
    • addDefault

      void addDefault(@NotNull @NotNull String path, @Nullable @Nullable Object value)
      给指定路径添加一个缺省值.

      如果缺省值 Configuration 没有被提供, 则自动创建一个新的.

      如果值为 null, 表示从缺省值 Configuration 中删除这个路径上的默认值

      如果 getDefaultSection() 返回的值为 null, 则建立一个新的

      原文: Sets the default value in the root at the given path as provided.

      If no source Configuration was provided as a default collection, then a new MemoryConfiguration will be created to hold the new default value.

      If value is null, the value will be removed from the default Configuration source.

      If the value as returned by getDefaultSection() is null, then this will create a new section at the path, replacing anything that may have existed there previously.

      参数:
      path - 要设置缺省值的路径.
      value - 要设置的值.
      抛出:
      IllegalArgumentException - 当路径为 null 时抛出此异常.
    • getComments

      Gets the requested comment list by path.

      If no comments exist, an empty list will be returned. A null entry represents an empty line and an empty String represents an empty comment line.

      参数:
      path - Path of the comments to get.
      返回:
      A unmodifiable list of the requested comments, every entry represents one line.
    • getInlineComments

      @NotNull @NotNull List<String> getInlineComments(@NotNull @NotNull String path)
      Gets the requested inline comment list by path.

      If no comments exist, an empty list will be returned. A null entry represents an empty line and an empty String represents an empty comment line.

      参数:
      path - Path of the comments to get.
      返回:
      A unmodifiable list of the requested comments, every entry represents one line.
    • setComments

      void setComments(@NotNull @NotNull String path, @Nullable @Nullable List<String> comments)
      Sets the comment list at the specified path.

      If value is null, the comments will be removed. A null entry is an empty line and an empty String entry is an empty comment line. If the path does not exist, no comments will be set. Any existing comments will be replaced, regardless of what the new comments are.

      Some implementations may have limitations on what persists. See their individual javadocs for details.

      参数:
      path - Path of the comments to set.
      comments - New comments to set at the path, every entry represents one line.
    • setInlineComments

      void setInlineComments(@NotNull @NotNull String path, @Nullable @Nullable List<String> comments)
      Sets the inline comment list at the specified path.

      If value is null, the comments will be removed. A null entry is an empty line and an empty String entry is an empty comment line. If the path does not exist, no comment will be set. Any existing comments will be replaced, regardless of what the new comments are.

      Some implementations may have limitations on what persists. See their individual javadocs for details.

      参数:
      path - Path of the comments to set.
      comments - New comments to set at the path, every entry represents one line.