Table.java
package org.djutils.data;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;
import org.djutils.base.Identifiable;
import org.djutils.exceptions.Throw;
import org.djutils.immutablecollections.ImmutableArrayList;
import org.djutils.immutablecollections.ImmutableList;
/**
* Abstract table implementation taking care of the columns. Sub classes must provide an {@code Iterator} over {@code Record}s
* and may have methods to add data.
* <p>
* Copyright (c) 2020-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
* </p>
* @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
* @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a>
* @author <a href="https://dittlab.tudelft.nl">Wouter Schakel</a>
*/
public abstract class Table implements Iterable<Row>, Identifiable
{
/** Id. */
private final String id;
/** Description. */
private final String description;
/** Columns. */
private final ImmutableList<Column<?>> columns;
/**
* Constructor.
* @param id String; id
* @param description String; description
* @param columns Collection<Column<?>>; columns
* @throws NullPointerException when id, description or columns is null
* @throws IllegalArgumentException when id is empty, duplicate column ids, or there are zero columns
*/
public Table(final String id, final String description, final Collection<Column<?>> columns)
{
Throw.whenNull(id, "Id may not be null.");
Throw.whenNull(description, "Description may not be null.");
Throw.whenNull(columns, "Columns may not be null.");
Throw.when(id.length() == 0, IllegalArgumentException.class, "id cannot be empty");
Throw.when(columns.size() == 0, IllegalArgumentException.class, "there should be at least one column");
Set<String> ids = new LinkedHashSet<>();
columns.forEach((column) -> ids.add(column.getId()));
Throw.when(ids.size() != columns.size(), IllegalArgumentException.class, "Duplicate column ids are not allowed.");
this.id = id;
this.description = description;
this.columns = new ImmutableArrayList<>(columns);
}
@Override
public String getId()
{
return this.id;
}
/**
* Returns the description.
* @return description
*/
public String getDescription()
{
return this.description;
}
/**
* Returns the list of columns.
* @return list of columns
*/
public ImmutableList<Column<?>> getColumns()
{
return this.columns;
}
/**
* Return a specific column.
* @param columnNumber int; number of the column.
* @return Column<?>; column.
* @throws IllegalArgumentException if the column number is < 0 or > {@code getNumberOfColumns() - 1}.
*/
public Column<?> getColumn(final int columnNumber)
{
return this.columns.get(columnNumber);
}
/**
* Returns the number of columns.
* @return number of columns
*/
public int getNumberOfColumns()
{
return this.columns.size();
}
/**
* Returns the number of the column in this table.
* @param column Column<?>; column.
* @return int; column number.
* @throws IllegalArgumentException if the column is not in the table.
*/
public int getColumnNumber(final Column<?> column)
{
Throw.when(!this.columns.contains(column), IllegalArgumentException.class, "Column %s is not in the table.",
column.getId());
return this.columns.indexOf(column);
}
/**
* Returns the number of the column with given id.
* @param columnId String; column id.
* @return int; column number.
* @throws IllegalArgumentException if the column is not in the table.
*/
public int getColumnNumber(final String columnId)
{
for (int columnNumber = 0; columnNumber < getNumberOfColumns(); columnNumber++)
{
if (this.columns.get(columnNumber).getId().equals(columnId))
{
return columnNumber;
}
}
throw new IllegalArgumentException("Column " + columnId + " is not in the table.");
}
/**
* Return the column ids as a String[].
* @return String[]; the column ids
*/
public String[] getColumnIds()
{
String[] headers = new String[getNumberOfColumns()];
int index = 0;
for (Column<?> column : this.columns)
{
headers[index++] = column.getId();
}
return headers;
}
/**
* Return the column descriptions as a String[].
* @return String[] the column headers
*/
public String[] getColumnDescriptions()
{
String[] descriptions = new String[getNumberOfColumns()];
int index = 0;
for (Column<?> column : this.columns)
{
descriptions[index++] = column.getDescription();
}
return descriptions;
}
/**
* Return the column data types as a Class<?>[].
* @return Class<?>[] the column data types
*/
public Class<?>[] getColumnDataTypes()
{
Class<?>[] dataTypes = new Class[getNumberOfColumns()];
int index = 0;
for (Column<?> column : this.columns)
{
dataTypes[index++] = column.getValueType();
}
return dataTypes;
}
/**
* Return the column data types as a String[]. Each data type is presented as the full class name or the primitive name. In
* case of an array, the result is preceded by an "[" for each dimension. After one or more "[" symbols, the class name is
* preceded by an "L" for a non-primitive class or interface, and by "I" for integer, "Z" for boolean, "B" for byte, "C" for
* char, "D" for double, "F" for float, "J" for long and "S" for short. So for a column with a double, "double" is returned.
* For a column with a "Double", "java.lang.Double" is returned, for an int[][], "[[I" is returned, and for a Long[],
* "[Ljava.lang.Long" is returned.
* @return String[] the column data types as an array of Strings
*/
public String[] getColumnDataTypeStrings()
{
String[] dataTypes = new String[getNumberOfColumns()];
int index = 0;
for (Column<?> column : this.columns)
{
dataTypes[index++] = column.getValueType().getName();
}
return dataTypes;
}
/**
* Returns whether the table is empty.
* @return whether the table is empty
*/
public abstract boolean isEmpty();
@Override
public String toString()
{
return "Table [id=" + this.id + ", description=" + this.description + ", columns=" + this.columns + "]";
}
}