Class AbstractResult

  • All Implemented Interfaces:
    Serializable, Descriptive
    Direct Known Subclasses:
    AverageResult, Result

    public abstract class AbstractResult
    extends UpwardsNavigable
    An AbstractResult is either an individual, independent Result, a Result that forms a part of the AverageResult, or the AverageResult, which combines other Results. It is specified by the ResultFormat and a list of NumericProperties.
    See Also:
    Serialized Form
    • Constructor Detail

      • AbstractResult

        public AbstractResult​(ResultFormat format)
        Constructs an AbstractResult with the list of properties specified by format.
        Parameters:
        format - a ResultFormat
    • Method Detail

      • toString

        public String toString()
        This will print out all the properties according to the ResultFormat.
        Overrides:
        toString in class Object
      • getProperties

        public List<NumericProperty> getProperties()
        Returns a list of NumericProperties, which conform to the chosen ResultFormat
        Returns:
        a list of relevant NumericProperty objects
      • setFormat

        public void setFormat​(ResultFormat format)
      • filterProperties

        public static List<NumericProperty> filterProperties​(AbstractResult result,
                                                             ResultFormat format)
        A static method for filtering the properties contained in the result to choose only those that conform to the format.
        Parameters:
        result - an AbstractResult with a list of properties
        format - the format used for filtering
        Returns:
        the filtered list of properties
      • filterProperties

        public static List<NumericProperty> filterProperties​(AbstractResult result)
        A static method for filtering the properties contained in the result to choose only those that conform to its format.
        Parameters:
        result - an AbstractResult with a list of properties and a specified format
        Returns:
        the filtered list of properties