Class QueryTableColumn
- java.lang.Object
-
- ch.systemsx.cisd.openbis.plugin.query.shared.api.v1.dto.QueryTableColumn
-
- All Implemented Interfaces:
java.io.Serializable
@JsonObject("QueryTableColumn") public class QueryTableColumn extends java.lang.Object implements java.io.Serializable
Column of query data. Defines title and data type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QueryTableColumn(java.lang.String title, QueryTableColumnDataType dataType)
Creates an instance for specified title and data type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryTableColumnDataType
getDataType()
Returns the data type.java.lang.String
getTitle()
Returns the title.
-
-
-
Constructor Detail
-
QueryTableColumn
public QueryTableColumn(java.lang.String title, QueryTableColumnDataType dataType)
Creates an instance for specified title and data type.
-
-
Method Detail
-
getTitle
public java.lang.String getTitle()
Returns the title.
-
getDataType
public QueryTableColumnDataType getDataType()
Returns the data type.
-
-