package org.djutils.data; import org.djutils.base.Identifiable; /** * Meta data of data in a column. *

* Copyright (c) 2020-2020 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 DataColumn 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(); }