com.clickzetta.platform.util.CharUtil 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.platform.util;
import com.clickzetta.platform.common.ColumnTypeAttributes;
public class CharUtil {
public static final int MIN_VARCHAR_LENGTH = 1;
public static final int MAX_VARCHAR_LENGTH = 65535;
private CharUtil() {
}
public static ColumnTypeAttributes typeAttributes(int length) {
return new ColumnTypeAttributes.ColumnTypeAttributesBuilder()
.length(length)
.build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy