Class FileConfigurationOptions

    • Constructor Detail

      • FileConfigurationOptions

        protected FileConfigurationOptions​(@NotNull
                                           MemoryConfiguration configuration)
    • Method Detail

      • header

        @Nullable
        public String header()
        Gets the header that will be applied to the top of the saved output.

        This header will be commented out and applied directly at the top of the generated output of the FileConfiguration. It is not required to include a newline at the end of the header as it will automatically be applied, but you may include one if you wish for extra spacing.

        Null is a valid value which will indicate that no header is to be applied. The default value is null.

        Returns:
        Header
      • header

        @NotNull
        public FileConfigurationOptions header​(@Nullable
                                               String value)
        Sets the header that will be applied to the top of the saved output.

        This header will be commented out and applied directly at the top of the generated output of the FileConfiguration. It is not required to include a newline at the end of the header as it will automatically be applied, but you may include one if you wish for extra spacing.

        Null is a valid value which will indicate that no header is to be applied.

        Parameters:
        value - New header
        Returns:
        This object, for chaining
      • copyHeader

        public boolean copyHeader()
        Gets whether or not the header should be copied from a default source.

        If this is true, if a default FileConfiguration is passed to MemoryConfiguration.setDefaults(org.bukkit.configuration.Configuration) then upon saving it will use the header from that config, instead of the one provided here.

        If no default is set on the configuration, or the default is not of type FileConfiguration, or that config has no header (header() returns null) then the header specified in this configuration will be used.

        Defaults to true.

        Returns:
        Whether or not to copy the header
      • copyHeader

        @NotNull
        public FileConfigurationOptions copyHeader​(boolean value)
        Sets whether or not the header should be copied from a default source.

        If this is true, if a default FileConfiguration is passed to MemoryConfiguration.setDefaults(org.bukkit.configuration.Configuration) then upon saving it will use the header from that config, instead of the one provided here.

        If no default is set on the configuration, or the default is not of type FileConfiguration, or that config has no header (header() returns null) then the header specified in this configuration will be used.

        Defaults to true.

        Parameters:
        value - Whether or not to copy the header
        Returns:
        This object, for chaining