|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.statistics.db.Table
jas.statistics.db.CollectionTable
public class CollectionTable
A database table which stores one or more variables of a collection of agents. For each time the table is updated, it stores on database one record per agent in the collection. \
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.
Field Summary |
---|
Fields inherited from class jas.statistics.db.Table |
---|
PK_IDENTITY, PK_NOTHING, PK_SIMULATION_TIME |
Constructor Summary | |
---|---|
CollectionTable(java.lang.String name,
boolean appendable,
java.util.Collection collection)
|
|
CollectionTable(java.lang.String name,
boolean appendable,
int pkMode,
java.util.Collection collection)
|
Method Summary | |
---|---|
void |
addDoubleColumn(java.lang.String name)
Add a double column, which is able to get values from a double source. |
void |
addDoubleColumn(java.lang.String name,
int valueId)
Add a double column, which is able to get values from a double source. |
void |
addFloatColumn(java.lang.String name)
Add a float column, which is able to get values from a float source. |
void |
addFloatColumn(java.lang.String name,
int valueId)
Add a float column, which is able to get values from a float source. |
void |
addIntColumn(java.lang.String name)
Add an integer column, which is able to get values from an integer source. |
void |
addIntColumn(java.lang.String name,
int valueId)
Add an integer column, which is able to get values from an integer source. |
void |
addLongColumn(java.lang.String name)
Add a long column, which is able to get values from a long source. |
void |
addLongColumn(java.lang.String name,
int valueId)
Add a long column, which is able to get values from a long source. |
void |
addStringColumn(java.lang.String name,
int size)
Add a string column, which is able to get values from a string source. |
void |
addStringColumn(java.lang.String name,
int size,
int valueId)
Add a string column, which is able to get values from a string source. |
java.util.Collection |
getCollection()
|
void |
setCollection(java.util.Collection collection)
|
Methods inherited from class jas.statistics.db.Table |
---|
addColumn, addDoubleColumn, addDoubleColumn, addFloatColumn, addFloatColumn, addIntColumn, addIntColumn, addLongColumn, addLongColumn, addStringColumn, addStringColumn, generateCreationStatement, getColumn, getColumns, getDb, getName, performAction, setDb, update |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CollectionTable(java.lang.String name, boolean appendable, java.util.Collection collection)
name
- appendable
- public CollectionTable(java.lang.String name, boolean appendable, int pkMode, java.util.Collection collection)
name
- appendable
- Method Detail |
---|
public void addDoubleColumn(java.lang.String name)
name
- The unique name name of the column.public void addDoubleColumn(java.lang.String name, int valueId)
name
- The unique name name of the column.source
- An IDoubleSource object, from which to retrieve values.valueId
- The valueId for the double source.public void addFloatColumn(java.lang.String name)
name
- The unique name name of the column.public void addFloatColumn(java.lang.String name, int valueId)
name
- The unique name name of the column.valueId
- The valueId for the float source.public void addIntColumn(java.lang.String name)
name
- The unique name name of the column.public void addIntColumn(java.lang.String name, int valueId)
name
- The unique name name of the column.valueId
- The valueId for the integer source.public void addLongColumn(java.lang.String name)
name
- The unique name name of the column.source
- An ILongSource object, from which to retrieve values, using the default valueId.public void addLongColumn(java.lang.String name, int valueId)
name
- The unique name name of the column.valueId
- The valueId for the integer source.public void addStringColumn(java.lang.String name, int size)
name
- The unique name name of the column.size
- The maximum allowed length of the String.public void addStringColumn(java.lang.String name, int size, int valueId)
name
- The unique name name of the column.size
- The maximum allowed length of the String.valueId
- The valueId for the source string.public java.util.Collection getCollection()
public void setCollection(java.util.Collection collection)
collection
-
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |