Class SimpleMeasure<Value>

java.lang.Object
org.uma.jmetal.util.naming.impl.SimpleDescribedEntity
org.uma.jmetal.util.measure.impl.SimpleMeasure<Value>
Type Parameters:
Value -
All Implemented Interfaces:
Serializable, Measure<Value>, DescribedEntity
Direct Known Subclasses:
SimplePullMeasure, SimplePushMeasure

public class SimpleMeasure<Value> extends SimpleDescribedEntity implements Measure<Value>
SimpleMeasure is a basic implementation of Measure. It provides a basic support for the most generic properties required by this interface.
Author:
Matthieu Vergne <matthieu.vergne@gmail.com>
See Also:
  • Constructor Details

    • SimpleMeasure

      public SimpleMeasure(String name, String description)
      Create a SimpleMeasure with a given name and a given description.
      Parameters:
      name - the name of the Measure
      description - the description of the Measure
    • SimpleMeasure

      public SimpleMeasure(String name)
      Create a SimpleMeasure with a given name and a null description.
      Parameters:
      name - the name of the Measure
    • SimpleMeasure

      public SimpleMeasure()
      Create a SimpleMeasure with the class name as its name and a null description.