jas.statistics
Class Series

java.lang.Object
  extended by jas.statistics.Series
All Implemented Interfaces:
ISimEventListener, IUpdatableSource
Direct Known Subclasses:
Series.Double, Series.Float, Series.Integer, Series.Long

public abstract class Series
extends java.lang.Object
implements ISimEventListener, IUpdatableSource

A series is a sequential collection of values coming from a given variable source over time.

Title: JAS

Description: Java Agent-based Simulation library

Copyright (C) 2002 Michele Sonnessa

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Author:
Michele Sonnessa

Nested Class Summary
static class Series.Double
           
static class Series.Float
           
static class Series.Integer
           
static class Series.Long
           
 
Constructor Summary
Series()
           
 
Method Summary
 boolean isCheckingTime()
          Return the current status of the time checker.
 void performAction(int actionType)
          ISimEventListener callback function.
 void setCheckingTime(boolean b)
          Set the current status of the time checker.
abstract  void updateSource()
          Force the source to update its currently cached data.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Series

public Series()
Method Detail

isCheckingTime

public boolean isCheckingTime()
Return the current status of the time checker. A time checker avoid the object to update more than one time per simulation step. The default value is enabled (true).

Returns:
True if the computer is currently checking time before update cached data, false if disabled.

performAction

public void performAction(int actionType)
ISimEventListener callback function. It supports only jas.engine.Sim.EVENT_UPDATE event.

Specified by:
performAction in interface ISimEventListener
Parameters:
actionType - The action id. Only jas.engine.Sim.EVENT_UPDATE is supported.
Throws:
java.lang.UnsupportedOperationException - If actionType is not supported.

setCheckingTime

public void setCheckingTime(boolean b)
Set the current status of the time checker. A time checker avoid the object to update more than one time per simulation step. The default value is enabled (true).

Parameters:
b - True if the computer is currently checking time before update cached data, false if disabled.

updateSource

public abstract void updateSource()
Description copied from interface: IUpdatableSource
Force the source to update its currently cached data.

Specified by:
updateSource in interface IUpdatableSource