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

com.clickzetta.platform.util.CharUtil Maven / Gradle / Ivy

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