com.aliyun.odps.data.Varchar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odps-sdk-commons Show documentation
Show all versions of odps-sdk-commons Show documentation
Alibaba Cloud Computing Open Data Processing Service
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