Package eu.reservoir.monitoring.core.list

This package provides classes that are used for embedding List data within a Measurement.

See:
          Description

Interface Summary
MList An interface for a List that can be used as a ProbeAttributeType.
MListValue An interface for a value in a MList.
 

Class Summary
DefaultMList A default implementation of a MList.
DefaultMListValue A default implementation of a MListValue.
ListProbeAttribute An implementation for having a list as a ProbeAttribute These are a Probe's Data Dictionary.
 

Package eu.reservoir.monitoring.core.list Description

This package provides classes that are used for embedding List data within a Measurement.

A List is defined like so:

 MList mList = new DefaultMList(ProbeAttributeType.INTEGER);
 
which defines the type of the elements in the list. Values are added to the list like so:
 mList.add(1).add(2).add(3);
 



RESERVOIR Monitoring 0.6.4