All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickzetta.client.jdbc.arrow.CZJsonText Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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