com.microsoft.azure.kusto.data.format.CslLongFormat 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
package com.microsoft.azure.kusto.data.format;
import com.microsoft.azure.kusto.data.Ensure;
public class CslLongFormat extends CslFormat {
private final Long value;
public CslLongFormat(long value) {
this.value = value;
}
@Override
public String getType() {
return "long";
}
@Override
public Long getValue() {
return value;
}
@Override
String getValueAsString() {
Ensure.argIsNotNull(value, "value");
return Long.toString(value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy