| Package | Description |
|---|---|
| org.uma.jmetal.measure | |
| org.uma.jmetal.measure.impl |
| Modifier and Type | Method and Description |
|---|---|
<T> PullMeasure<T> |
MeasureManager.getPullMeasure(Object key) |
| Modifier and Type | Class and Description |
|---|---|
class |
BasicMeasure<T>
A
BasicMeasure provides a simple way to define a
measure that merely stores a single value |
class |
CountingMeasure
A
CountingMeasure provides a simple way to evaluate a number of
occurrences. |
class |
DurationMeasure
This measure allows to have a simple way to compute the time spent in doing
something.
|
class |
ListenerTimeMeasure
This measure is a facility to evaluate the time spent in
MeasureListeners registered in PushMeasures. |
class |
PullPushMeasure<Value>
A
PullPushMeasure aims at providing both the PushMeasure and
PullMeasure abilities into a single Measure. |
class |
SimplePullMeasure<Value>
SimplePullMeasure is a basic implementation of PullMeasure. |
| Modifier and Type | Method and Description |
|---|---|
<Value> PullMeasure<Value> |
MeasureFactory.createPullFromPush(PushMeasure<Value> push,
Value initialValue)
|
<T> PullMeasure<T> |
SimpleMeasureManager.getPullMeasure(Object key) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,PullMeasure<?>> |
MeasureFactory.createPullsFromFields(Object object)
Create
PullMeasures based on the fields available from an
instance, whatever it is. |
Map<String,PullMeasure<?>> |
MeasureFactory.createPullsFromGetters(Object object)
Create
PullMeasures based on the getters available from an
instance, whatever it is. |
| Modifier and Type | Method and Description |
|---|---|
<Value> PushMeasure<Value> |
MeasureFactory.createPushFromPull(PullMeasure<Value> pull,
long period)
Create a
PushMeasure which checks at regular intervals the value
of a PullMeasure. |
void |
SimpleMeasureManager.setPullMeasure(Object key,
PullMeasure<?> measure) |
| Constructor and Description |
|---|
PullPushMeasure(PullMeasure<Value> pull,
PushMeasure<Value> push,
DescribedEntity reference)
|
PullPushMeasure(PullMeasure<Value> pull,
PushMeasure<Value> push,
String name,
String description)
Equivalent to
PullPushMeasure.PullPushMeasure(PullMeasure, PushMeasure, DescribedEntity) but
the reference parameter is replaced by the specific name and description
that you want to provide. |
Copyright © 2018. All rights reserved.