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

com.aliyun.odps.data.Varchar Maven / Gradle / Ivy

The newest version!
package com.aliyun.odps.data;


/**
 * Varchar 类型对应的数据类
 *
 * Created by zhenhong.gzh on 16/12/12.
 */

public class Varchar extends AbstractChar implements Comparable {
  public Varchar(String value) {
    super(value);
  }

  public Varchar(String value, int length) {
    super(value, length);
  }

  @Override
  public int compareTo(Varchar rhs) {
    if (rhs == this) {
      return 0;
    }
    return value.compareTo(rhs.value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy