org.jboss.jca.common.api.metadata.spec.XsdString.hashCode()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(6.9k)|赞(0)|评价(0)|浏览(65)

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

XsdString.hashCode介绍

暂无

代码示例

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((configProperties == null) ? 0 : configProperties.hashCode());
 result = prime * result + ((connectionImplClass == null) ? 0 : connectionImplClass.hashCode());
 result = prime * result + ((connectionInterface == null) ? 0 : connectionInterface.hashCode());
 result = prime * result + ((connectionfactoryImplClass == null) ? 0 : connectionfactoryImplClass.hashCode());
 result = prime * result + ((connectionfactoryInterface == null) ? 0 : connectionfactoryInterface.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result +
      ((managedconnectionfactoryClass == null) ? 0 : managedconnectionfactoryClass.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar/ironjacamar-common-api

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = super.hashCode();
 result = prime * result + ((lang == null) ? 0 : lang.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((lang == null) ? 0 : lang.hashCode());
 result = prime * result + ((largeIcon == null) ? 0 : largeIcon.hashCode());
 result = prime * result + ((smallIcon == null) ? 0 : smallIcon.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((adminobjectClass == null) ? 0 : adminobjectClass.hashCode());
 result = prime * result + ((adminobjectInterface == null) ? 0 : adminobjectInterface.hashCode());
 result = prime * result + ((configProperties == null) ? 0 : configProperties.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((configPropertyName == null) ? 0 : configPropertyName.hashCode());
 result = prime * result + ((description == null) ? 0 : description.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((activationspec == null) ? 0 : activationspec.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((messagelistenerType == null) ? 0 : messagelistenerType.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((description == null) ? 0 : description.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((securityPermissionSpec == null) ? 0 : securityPermissionSpec.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((activationspecClass == null) ? 0 : activationspecClass.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((requiredConfigProperty == null) ? 0 : requiredConfigProperty.hashCode());
 result = prime * result + ((configProperties == null) ? 0 : configProperties.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((eisType == null) ? 0 : eisType.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((license == null) ? 0 : license.hashCode());
 result = prime * result + ((resourceadapter == null) ? 0 : resourceadapter.hashCode());
 result = prime * result + ((vendorName == null) ? 0 : vendorName.hashCode());
 result = prime * result + ((description == null) ? 0 : description.hashCode());
 result = prime * result + ((displayName == null) ? 0 : displayName.hashCode());
 result = prime * result + ((resourceadapterVersion == null) ? 0 : resourceadapterVersion.hashCode());
 result = prime * result + (metadataComplete ? 1231 : 1237);
 result = prime * result + ((moduleName == null) ? 0 : moduleName.hashCode());
 result = prime * result + ((requiredWorkContexts == null) ? 0 : requiredWorkContexts.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((adminobjects == null) ? 0 : adminobjects.hashCode());
 result = prime * result + ((configProperties == null) ? 0 : configProperties.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((inboundResourceadapter == null) ? 0 : inboundResourceadapter.hashCode());
 result = prime * result + ((outboundResourceadapter == null) ? 0 : outboundResourceadapter.hashCode());
 result = prime * result + ((resourceadapterClass == null) ? 0 : resourceadapterClass.hashCode());
 result = prime * result + ((securityPermissions == null) ? 0 : securityPermissions.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((authenticationMechanismType == null) ? 0 : authenticationMechanismType.hashCode());
 result = prime * result + ((credentialInterface == null) ? 0 : credentialInterface.hashCode());
 result = prime * result + ((description == null) ? 0 : description.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + ((cIId == null) ? 0 : cIId.hashCode());
 return result;
}

代码示例来源:origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

/**
* {@inheritDoc}
*/
public int hashCode()
{
 final int prime = 31;
 int result = 1;
 result = prime * result + ((configPropertyName == null) ? 0 : configPropertyName.hashCode());
 result = prime * result + ((configPropertyType == null) ? 0 : configPropertyType.hashCode());
 result = prime * result + ((configPropertyValue == null) ? 0 : configPropertyValue.hashCode());
 result = prime * result + ((description == null) ? 0 : description.hashCode());
 result = prime * result + ((id == null) ? 0 : id.hashCode());
 result = prime * result + (mandatory ? 7 : 0);
 result = prime * result + ((attachedClassName == null) ? 0 : attachedClassName.hashCode());
 result = prime * result + ((configPropertyConfidential == null) ? 0 : configPropertyConfidential.hashCode());
 result = prime * result + ((configPropertyIgnore == null) ? 0 : configPropertyIgnore.hashCode());
 result = prime * result +
      ((configPropertySupportsDynamicUpdates == null) ? 0 : configPropertySupportsDynamicUpdates.hashCode());
 result = prime * result + ((configPropertyIgnoreId == null) ? 0 : configPropertyIgnoreId.hashCode());
 result = prime *
      result +
      ((configPropertySupportsDynamicUpdatesId == null) ? 0 : configPropertySupportsDynamicUpdatesId
       .hashCode());
 result = prime * result + ((configPropertyConfidentialId == null) ? 0 : configPropertyConfidentialId.hashCode());
 return result;
}

相关文章

微信公众号

最新文章

更多