Class ResultFormat

  • All Implemented Interfaces:
    Serializable

    public class ResultFormat
    extends Object
    implements Serializable

    A singleton ResultFormat, which contains a list of NumericPropertyKeywords used for identification of NumericProperties. The format is constructed using a string of unique characters.

    See Also:
    Serialized Form
    • Method Detail

      • addResultFormatListener

        public static void addResultFormatListener​(ResultFormatListener rfl)
      • removeListeners

        public static void removeListeners()
      • getInstance

        public static ResultFormat getInstance()
        This class uses a singleton pattern, meaning there is only instance of this class.
        Returns:
        the single (static) instance of this class
      • getKeywords

        public List<NumericPropertyKeyword> getKeywords()
        Retrieves the list of keyword associated with this ResultFormat
        Returns:
        a list of keywords that can be used to access NumericProperty objects
      • abbreviations

        public List<String> abbreviations()
        Creates a List<String> of default abbreviations corresponding to the list of keywords specific to NumericProperty objects.
        Returns:
        a list of abbreviations (typically, for filling the result table headers)
      • descriptors

        public List<String> descriptors()
        Creates a List<String> of default descriptions corresponding to the list of keywords specific to NumericProperty objects.
        Returns:
        a list of abbreviations (typically, for filling the result table tooltips)
      • fromAbbreviation

        public NumericPropertyKeyword fromAbbreviation​(String descriptor)
        Finds a NumericPropertyKeyword contained in the nameMap, the description of which matches descriptor.
        Parameters:
        descriptor - a String describing the NumericPropertyKeyword
        Returns:
        the NumericPropertyKeyword object
      • size

        public int size()
        Calculates the length of the format string, which is the same as the size of the keyword list.
        Returns:
        an integer, representing the size of the format string.