Interface IPluginsContainer


public interface IPluginsContainer
Interface for a container of IPlugins Can be used as a builder-pattern.
  • Method Details

    • add

      Add a single plugin to the container
      Parameters:
      plugin - The plugin to add
      Returns:
      A builder-pattern style reference to this
    • add

      Add a list of plugins to the container
      Parameters:
      plugins - A list of plugins to add
      Returns:
      A builder-pattern style reference to this
    • add

      IPluginsContainer add(IPlugin... plugins)
      Add a list of plugins to the container
      Parameters:
      plugins - Varargs of plugins to add
      Returns:
      A builder-pattern style reference to this
    • remove

      IPluginsContainer remove(IPlugin plugin)
      Remove a plugin from the container
      Parameters:
      plugin - The plugin to remove
      Returns:
      A builder-pattern style reference to this
    • get

      Optional<IPlugin> get(String name)
      Get a plugin from the container based on the plugin name
      Parameters:
      name - The IPlugin.getName() to look for
      Returns:
      The IPlugin instance if the plugin is present, empty otherwise
    • getPlugins

      Collection<IPlugin> getPlugins()
      Get the underlying collection of plugins
      Returns:
      The underlying collection of plugins
    • getEnabledPlugins

      Collection<IPlugin> getEnabledPlugins()
      Get a collection of plugins filtered such that it only contains the enabled plugins
      Returns:
      A collection of the enabled plugins
    • clear

      void clear()
      Clear the container of all plugins