package org.opentrafficsim.kpi.sampling;
import org.opentrafficsim.base.Identifiable;
/**
* Meta data of data in a column.
*
* Copyright (c) 2020-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
* @param type of value
*/
public interface Column extends Identifiable
{
/**
* Returns the column description.
* @return String; column description
*/
String getDescription();
/**
* Returns the type of the values in the column.
* @return Class<?>; type of the values in the column
*/
Class getValueType();
}