com.clickzetta.client.jdbc.arrow.CZJsonText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.client.jdbc.arrow;
/**
* Java object type to hold a JSON string.
* It is used for holding JSON strings of complex and interval types.
*/
public class CZJsonText {
private final String text;
public CZJsonText(String text) {
this.text = text;
}
@Override
public String toString() {
return text;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy