Class SimpleDataColumn<T>

java.lang.Object
org.djutils.data.SimpleDataColumn<T>
Type Parameters:
T - the value type
All Implemented Interfaces:
Serializable, org.djutils.base.Identifiable, DataColumn<T>

public class SimpleDataColumn<T>
extends Object
implements DataColumn<T>, Serializable
SimpleColumn implements the Column interface with a single value.

Copyright (c) 2020-2020 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information https://djutils.org. The DJUTILS project is distributed under a three-clause BSD-style license, which can be found at https://djutils.org/docs/license.html.
Author:
Alexander Verbraeck, Peter Knoppers, Wouter Schakel
See Also:
Serialized Form
  • Constructor Details

    • SimpleDataColumn

      public SimpleDataColumn​(String id, String description, Class<T> valueType)
      Construct a simple, single valued column.
      Parameters:
      id - String; the column id, preferably without spaces or symbols
      description - String; the column description
      valueType - Class<T>; the value type
  • Method Details