org.ccsds.moims.mo.mal.structures.Blob.hashCode()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(113)

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

Blob.hashCode介绍

暂无

代码示例

代码示例来源:origin: int.esa.nmf.core.moservices.api/software-management

/**
 * Returns a hash code for this object.
 * @return a hash code value for this object.
 */
public int hashCode()
{
 int hash = 7;
 hash = 83 * hash + (address != null ? address.hashCode() : 0);
 hash = 83 * hash + (data != null ? data.hashCode() : 0);
 hash = 83 * hash + (checksum != null ? checksum.hashCode() : 0);
 return hash;
}

代码示例来源:origin: int.esa.nmf.core.moservices.api/com-nmf

/**
 * Returns a hash code for this object.
 * @return a hash code value for this object.
 */
public int hashCode()
{
 int hash = 7;
 hash = 83 * hash + (network != null ? network.hashCode() : 0);
 hash = 83 * hash + (providerURI != null ? providerURI.hashCode() : 0);
 hash = 83 * hash + (objectType != null ? objectType.hashCode() : 0);
 hash = 83 * hash + (sourceLinkDomainId != null ? sourceLinkDomainId.hashCode() : 0);
 hash = 83 * hash + (sourceLinkObjectType != null ? sourceLinkObjectType.hashCode() : 0);
 hash = 83 * hash + (sourceLinkObjId != null ? sourceLinkObjId.hashCode() : 0);
 hash = 83 * hash + (relatedLink != null ? relatedLink.hashCode() : 0);
 hash = 83 * hash + (objectBody != null ? objectBody.hashCode() : 0);
 hash = 83 * hash + (objId != null ? objId.hashCode() : 0);
 hash = 83 * hash + (timestamp != null ? timestamp.hashCode() : 0);
 return hash;
}

代码示例来源:origin: int.esa.nmf.core.moservices.api/platform

/**
 * Returns a hash code for this object.
 * @return a hash code value for this object.
 */
public int hashCode()
{
 int hash = 7;
 hash = 83 * hash + (content != null ? content.hashCode() : 0);
 hash = 83 * hash + (creationDate != null ? creationDate.hashCode() : 0);
 hash = 83 * hash + (dimension != null ? dimension.hashCode() : 0);
 hash = 83 * hash + (format != null ? format.hashCode() : 0);
 return hash;
}

相关文章