com.microsoft.azure.kusto.data.KustoResultColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-data Show documentation
Show all versions of kusto-data Show documentation
Kusto client library for executing queries and retrieving data
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package com.microsoft.azure.kusto.data;
public class KustoResultColumn {
private String columnName;
private String columnType;
private int ordinal;
public KustoResultColumn(String columnName, String columnType, int ordinal) {
this.columnName = columnName;
this.columnType = columnType;
this.ordinal = ordinal;
}
public String getColumnName() {
return columnName;
}
public String getColumnType() {
return columnType;
}
public int getOrdinal() {
return ordinal;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy