Class AbstractFileLayerLoader

    • Field Detail

      • PRIO_COMPARATOR

        public static final Comparator PRIO_COMPARATOR
    • Constructor Detail

      • AbstractFileLayerLoader

        public AbstractFileLayerLoader()
        default constructor for xml persistence
      • AbstractFileLayerLoader

        public AbstractFileLayerLoader​(String description,
                                       List<String> extensions)
        Construct a new AbstractFileLayerLoader with a description and list of extensions.
        Parameters:
        description - The format description.
        extensions - The supported file extension.
    • Method Detail

      • getDescription

        public String getDescription()
        Get the descriptive name of the file format (e.g. ESRI Shapefile).
        Specified by:
        getDescription in interface FileLayerLoader
        Returns:
        The file format name.
      • addFileExtensions

        public boolean addFileExtensions​(List<String> newexts)
        Add to the list of file extensions supported by the plug-in.
        Parameters:
        newexts - list of extensions
        Returns:
        true on success
      • addOption

        public void addOption​(String name,
                              String type,
                              boolean required)
        Add an option.
        Parameters:
        name - The name of the option.
        type - The type of the option.
        required - True if a value for the option is required.
        See Also:
        Option
      • addOption

        public void addOption​(String name,
                              String type,
                              Object defaultValue,
                              boolean required)
        Add an option.
        Parameters:
        name - The name of the option.
        type - The type of the option.
        defaultValue - The defaultValue of the option.
        required - True if a value for the option is required.
        See Also:
        Option
      • removeOption

        public boolean removeOption​(String name,
                                    String type,
                                    boolean required)
        Remove an option.
        Parameters:
        name - The name of the option.
        type - The type of the option.
        required - True if a value for the option is required.
        Returns:
        true if this list contained the specified option
        See Also:
        Option
      • removeOption

        public boolean removeOption​(String name,
                                    String type,
                                    Object defaultValue,
                                    boolean required)
        Remove an option.
        Parameters:
        name - The name of the option.
        type - The type of the option.
        defaultValue - The defaultValue of the option.
        required - True if a value for the option is required.
        See Also:
        Option
      • toString

        public String toString()
        Return a string representation of the loader.
        Overrides:
        toString in class Object
        Returns:
        The string.