org.apache.hadoop.hive.metastore.api.Decimal.isSetUnscaled()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(8.9k)|赞(0)|评价(0)|浏览(150)

本文整理了Java中org.apache.hadoop.hive.metastore.api.Decimal.isSetUnscaled()方法的一些代码示例,展示了Decimal.isSetUnscaled()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Decimal.isSetUnscaled()方法的具体详情如下:
包路径:org.apache.hadoop.hive.metastore.api.Decimal
类名称:Decimal
方法名:isSetUnscaled

Decimal.isSetUnscaled介绍

[英]Returns true if field unscaled is set (has been assigned a value) and false otherwise
[中]如果设置了“未缩放字段”(已指定值),则返回true,否则返回false

代码示例

代码示例来源:origin: apache/hive

public boolean equals(Decimal that) {
 if (that == null)
  return false;
 boolean this_present_scale = true;
 boolean that_present_scale = true;
 if (this_present_scale || that_present_scale) {
  if (!(this_present_scale && that_present_scale))
   return false;
  if (this.scale != that.scale)
   return false;
 }
 boolean this_present_unscaled = true && this.isSetUnscaled();
 boolean that_present_unscaled = true && that.isSetUnscaled();
 if (this_present_unscaled || that_present_unscaled) {
  if (!(this_present_unscaled && that_present_unscaled))
   return false;
  if (!this.unscaled.equals(that.unscaled))
   return false;
 }
 return true;
}

代码示例来源:origin: apache/hive

@Override
public int hashCode() {
 List<Object> list = new ArrayList<Object>();
 boolean present_scale = true;
 list.add(present_scale);
 if (present_scale)
  list.add(scale);
 boolean present_unscaled = true && (isSetUnscaled());
 list.add(present_unscaled);
 if (present_unscaled)
  list.add(unscaled);
 return list.hashCode();
}

代码示例来源:origin: apache/hive

/**
 * Performs a deep copy on <i>other</i>.
 */
public Decimal(Decimal other) {
 __isset_bitfield = other.__isset_bitfield;
 this.scale = other.scale;
 if (other.isSetUnscaled()) {
  this.unscaled = org.apache.thrift.TBaseHelper.copyBinary(other.unscaled);
 }
}

代码示例来源:origin: apache/hive

/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
 if (field == null) {
  throw new IllegalArgumentException();
 }
 switch (field) {
 case SCALE:
  return isSetScale();
 case UNSCALED:
  return isSetUnscaled();
 }
 throw new IllegalStateException();
}

代码示例来源:origin: apache/hive

@Override
public int compareTo(Decimal other) {
 if (!getClass().equals(other.getClass())) {
  return getClass().getName().compareTo(other.getClass().getName());
 }
 int lastComparison = 0;
 lastComparison = Boolean.valueOf(isSetScale()).compareTo(other.isSetScale());
 if (lastComparison != 0) {
  return lastComparison;
 }
 if (isSetScale()) {
  lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.scale, other.scale);
  if (lastComparison != 0) {
   return lastComparison;
  }
 }
 lastComparison = Boolean.valueOf(isSetUnscaled()).compareTo(other.isSetUnscaled());
 if (lastComparison != 0) {
  return lastComparison;
 }
 if (isSetUnscaled()) {
  lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.unscaled, other.unscaled);
  if (lastComparison != 0) {
   return lastComparison;
  }
 }
 return 0;
}

代码示例来源:origin: apache/hive

public void validate() throws org.apache.thrift.TException {
 // check for required fields
 if (!isSetScale()) {
  throw new org.apache.thrift.protocol.TProtocolException("Required field 'scale' is unset! Struct:" + toString());
 }
 if (!isSetUnscaled()) {
  throw new org.apache.thrift.protocol.TProtocolException("Required field 'unscaled' is unset! Struct:" + toString());
 }
 // check for sub-struct validity
}

代码示例来源:origin: org.spark-project.hive/hive-metastore

public boolean equals(Decimal that) {
 if (that == null)
  return false;
 boolean this_present_unscaled = true && this.isSetUnscaled();
 boolean that_present_unscaled = true && that.isSetUnscaled();
 if (this_present_unscaled || that_present_unscaled) {
  if (!(this_present_unscaled && that_present_unscaled))
   return false;
  if (!this.unscaled.equals(that.unscaled))
   return false;
 }
 boolean this_present_scale = true;
 boolean that_present_scale = true;
 if (this_present_scale || that_present_scale) {
  if (!(this_present_scale && that_present_scale))
   return false;
  if (this.scale != that.scale)
   return false;
 }
 return true;
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

public boolean equals(Decimal that) {
 if (that == null)
  return false;
 boolean this_present_unscaled = true && this.isSetUnscaled();
 boolean that_present_unscaled = true && that.isSetUnscaled();
 if (this_present_unscaled || that_present_unscaled) {
  if (!(this_present_unscaled && that_present_unscaled))
   return false;
  if (!this.unscaled.equals(that.unscaled))
   return false;
 }
 boolean this_present_scale = true;
 boolean that_present_scale = true;
 if (this_present_scale || that_present_scale) {
  if (!(this_present_scale && that_present_scale))
   return false;
  if (this.scale != that.scale)
   return false;
 }
 return true;
}

代码示例来源:origin: org.spark-project.hive/hive-metastore

@Override
public int hashCode() {
 HashCodeBuilder builder = new HashCodeBuilder();
 boolean present_unscaled = true && (isSetUnscaled());
 builder.append(present_unscaled);
 if (present_unscaled)
  builder.append(unscaled);
 boolean present_scale = true;
 builder.append(present_scale);
 if (present_scale)
  builder.append(scale);
 return builder.toHashCode();
}

代码示例来源:origin: org.spark-project.hive/hive-metastore

/**
  * Performs a deep copy on <i>other</i>.
  */
 public Decimal(Decimal other) {
  __isset_bitfield = other.__isset_bitfield;
  if (other.isSetUnscaled()) {
   this.unscaled = org.apache.thrift.TBaseHelper.copyBinary(other.unscaled);
;
  }
  this.scale = other.scale;
 }

代码示例来源:origin: com.facebook.presto.hive/hive-apache

/**
  * Performs a deep copy on <i>other</i>.
  */
 public Decimal(Decimal other) {
  __isset_bitfield = other.__isset_bitfield;
  if (other.isSetUnscaled()) {
   this.unscaled = org.apache.thrift.TBaseHelper.copyBinary(other.unscaled);
;
  }
  this.scale = other.scale;
 }

代码示例来源:origin: org.spark-project.hive/hive-metastore

/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
 if (field == null) {
  throw new IllegalArgumentException();
 }
 switch (field) {
 case UNSCALED:
  return isSetUnscaled();
 case SCALE:
  return isSetScale();
 }
 throw new IllegalStateException();
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
 if (field == null) {
  throw new IllegalArgumentException();
 }
 switch (field) {
 case UNSCALED:
  return isSetUnscaled();
 case SCALE:
  return isSetScale();
 }
 throw new IllegalStateException();
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

public int compareTo(Decimal other) {
 if (!getClass().equals(other.getClass())) {
  return getClass().getName().compareTo(other.getClass().getName());
 }
 int lastComparison = 0;
 Decimal typedOther = (Decimal)other;
 lastComparison = Boolean.valueOf(isSetUnscaled()).compareTo(typedOther.isSetUnscaled());
 if (lastComparison != 0) {
  return lastComparison;
 }
 if (isSetUnscaled()) {
  lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.unscaled, typedOther.unscaled);
  if (lastComparison != 0) {
   return lastComparison;
  }
 }
 lastComparison = Boolean.valueOf(isSetScale()).compareTo(typedOther.isSetScale());
 if (lastComparison != 0) {
  return lastComparison;
 }
 if (isSetScale()) {
  lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.scale, typedOther.scale);
  if (lastComparison != 0) {
   return lastComparison;
  }
 }
 return 0;
}

代码示例来源:origin: org.spark-project.hive/hive-metastore

public int compareTo(Decimal other) {
 if (!getClass().equals(other.getClass())) {
  return getClass().getName().compareTo(other.getClass().getName());
 }
 int lastComparison = 0;
 Decimal typedOther = (Decimal)other;
 lastComparison = Boolean.valueOf(isSetUnscaled()).compareTo(typedOther.isSetUnscaled());
 if (lastComparison != 0) {
  return lastComparison;
 }
 if (isSetUnscaled()) {
  lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.unscaled, typedOther.unscaled);
  if (lastComparison != 0) {
   return lastComparison;
  }
 }
 lastComparison = Boolean.valueOf(isSetScale()).compareTo(typedOther.isSetScale());
 if (lastComparison != 0) {
  return lastComparison;
 }
 if (isSetScale()) {
  lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.scale, typedOther.scale);
  if (lastComparison != 0) {
   return lastComparison;
  }
 }
 return 0;
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

public void validate() throws org.apache.thrift.TException {
 // check for required fields
 if (!isSetUnscaled()) {
  throw new org.apache.thrift.protocol.TProtocolException("Required field 'unscaled' is unset! Struct:" + toString());
 }
 if (!isSetScale()) {
  throw new org.apache.thrift.protocol.TProtocolException("Required field 'scale' is unset! Struct:" + toString());
 }
 // check for sub-struct validity
}

代码示例来源:origin: org.spark-project.hive/hive-metastore

public void validate() throws org.apache.thrift.TException {
 // check for required fields
 if (!isSetUnscaled()) {
  throw new org.apache.thrift.protocol.TProtocolException("Required field 'unscaled' is unset! Struct:" + toString());
 }
 if (!isSetScale()) {
  throw new org.apache.thrift.protocol.TProtocolException("Required field 'scale' is unset! Struct:" + toString());
 }
 // check for sub-struct validity
}

代码示例来源:origin: com.facebook.presto.hive/hive-apache

@Override
public int hashCode() {
 HashCodeBuilder builder = new HashCodeBuilder();
 boolean present_unscaled = true && (isSetUnscaled());
 builder.append(present_unscaled);
 if (present_unscaled)
  builder.append(unscaled);
 boolean present_scale = true;
 builder.append(present_scale);
 if (present_scale)
  builder.append(scale);
 return builder.toHashCode();
}

相关文章