本文整理了Java中org.apache.hadoop.hive.metastore.api.Function.isSetFunctionType()
方法的一些代码示例,展示了Function.isSetFunctionType()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Function.isSetFunctionType()
方法的具体详情如下:
包路径:org.apache.hadoop.hive.metastore.api.Function
类名称:Function
方法名:isSetFunctionType
[英]Returns true if field functionType is set (has been assigned a value) and false otherwise
[中]如果设置了字段functionType(已赋值),则返回true,否则返回false
代码示例来源:origin: apache/hive
list.add(createTime);
boolean present_functionType = true && (isSetFunctionType());
list.add(present_functionType);
if (present_functionType)
代码示例来源:origin: apache/hive
lastComparison = Boolean.valueOf(isSetFunctionType()).compareTo(other.isSetFunctionType());
if (lastComparison != 0) {
return lastComparison;
if (isSetFunctionType()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.functionType, other.functionType);
if (lastComparison != 0) {
代码示例来源:origin: apache/hive
if (other.isSetFunctionType()) {
this.functionType = other.functionType;
代码示例来源: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 FUNCTION_NAME:
return isSetFunctionName();
case DB_NAME:
return isSetDbName();
case CLASS_NAME:
return isSetClassName();
case OWNER_NAME:
return isSetOwnerName();
case OWNER_TYPE:
return isSetOwnerType();
case CREATE_TIME:
return isSetCreateTime();
case FUNCTION_TYPE:
return isSetFunctionType();
case RESOURCE_URIS:
return isSetResourceUris();
case CAT_NAME:
return isSetCatName();
}
throw new IllegalStateException();
}
代码示例来源:origin: apache/hive
boolean this_present_functionType = true && this.isSetFunctionType();
boolean that_present_functionType = true && that.isSetFunctionType();
if (this_present_functionType || that_present_functionType) {
if (!(this_present_functionType && that_present_functionType))
代码示例来源:origin: apache/hive
optionals.set(5);
if (struct.isSetFunctionType()) {
optionals.set(6);
oprot.writeI32(struct.createTime);
if (struct.isSetFunctionType()) {
oprot.writeI32(struct.functionType.getValue());
代码示例来源:origin: org.spark-project.hive/hive-metastore
builder.append(createTime);
boolean present_functionType = true && (isSetFunctionType());
builder.append(present_functionType);
if (present_functionType)
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
list.add(createTime);
boolean present_functionType = true && (isSetFunctionType());
list.add(present_functionType);
if (present_functionType)
代码示例来源: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 FUNCTION_NAME:
return isSetFunctionName();
case DB_NAME:
return isSetDbName();
case CLASS_NAME:
return isSetClassName();
case OWNER_NAME:
return isSetOwnerName();
case OWNER_TYPE:
return isSetOwnerType();
case CREATE_TIME:
return isSetCreateTime();
case FUNCTION_TYPE:
return isSetFunctionType();
case RESOURCE_URIS:
return isSetResourceUris();
}
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 FUNCTION_NAME:
return isSetFunctionName();
case DB_NAME:
return isSetDbName();
case CLASS_NAME:
return isSetClassName();
case OWNER_NAME:
return isSetOwnerName();
case OWNER_TYPE:
return isSetOwnerType();
case CREATE_TIME:
return isSetCreateTime();
case FUNCTION_TYPE:
return isSetFunctionType();
case RESOURCE_URIS:
return isSetResourceUris();
}
throw new IllegalStateException();
}
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
if (other.isSetFunctionType()) {
this.functionType = other.functionType;
代码示例来源:origin: org.spark-project.hive/hive-metastore
if (other.isSetFunctionType()) {
this.functionType = other.functionType;
代码示例来源:origin: com.facebook.presto.hive/hive-apache
if (other.isSetFunctionType()) {
this.functionType = other.functionType;
代码示例来源:origin: org.apache.hive/hive-standalone-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 FUNCTION_NAME:
return isSetFunctionName();
case DB_NAME:
return isSetDbName();
case CLASS_NAME:
return isSetClassName();
case OWNER_NAME:
return isSetOwnerName();
case OWNER_TYPE:
return isSetOwnerType();
case CREATE_TIME:
return isSetCreateTime();
case FUNCTION_TYPE:
return isSetFunctionType();
case RESOURCE_URIS:
return isSetResourceUris();
case CAT_NAME:
return isSetCatName();
}
throw new IllegalStateException();
}
代码示例来源:origin: org.spark-project.hive/hive-metastore
boolean this_present_functionType = true && this.isSetFunctionType();
boolean that_present_functionType = true && that.isSetFunctionType();
if (this_present_functionType || that_present_functionType) {
if (!(this_present_functionType && that_present_functionType))
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
boolean this_present_functionType = true && this.isSetFunctionType();
boolean that_present_functionType = true && that.isSetFunctionType();
if (this_present_functionType || that_present_functionType) {
if (!(this_present_functionType && that_present_functionType))
代码示例来源:origin: com.facebook.presto.hive/hive-apache
optionals.set(5);
if (struct.isSetFunctionType()) {
optionals.set(6);
oprot.writeI32(struct.createTime);
if (struct.isSetFunctionType()) {
oprot.writeI32(struct.functionType.getValue());
代码示例来源:origin: org.spark-project.hive/hive-metastore
optionals.set(5);
if (struct.isSetFunctionType()) {
optionals.set(6);
oprot.writeI32(struct.createTime);
if (struct.isSetFunctionType()) {
oprot.writeI32(struct.functionType.getValue());
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
optionals.set(5);
if (struct.isSetFunctionType()) {
optionals.set(6);
oprot.writeI32(struct.createTime);
if (struct.isSetFunctionType()) {
oprot.writeI32(struct.functionType.getValue());
代码示例来源:origin: com.facebook.presto.hive/hive-apache
builder.append(createTime);
boolean present_functionType = true && (isSetFunctionType());
builder.append(present_functionType);
if (present_functionType)
内容来源于网络,如有侵权,请联系作者删除!