Java Code Examples for com.google.common.base.Objects#hashCode()
The following examples show how to use
com.google.common.base.Objects#hashCode() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ExternalLink.java From onos with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(externalLinkKey, plugId); }
Example 2
Source File: ReferenceTermList.java From termsuite-core with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(string); }
Example 3
Source File: SecretsGroupSRN.java From strongbox with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(account, groupIdentifier); }
Example 4
Source File: SetStatement.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(assignments, settingType); }
Example 5
Source File: GenfilesPath.java From intellij with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(relativePath); }
Example 6
Source File: SchemaField.java From dremio-oss with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(reference, possibleNulls); }
Example 7
Source File: OfferEntry.java From java-stellar-sdk with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(this.v); }
Example 8
Source File: Quota.java From james-project with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(used, limit); }
Example 9
Source File: CreateTable.java From tajo with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode( external, tableName, Objects.hashCode(tableElements), storageType, subquery, location, params, partition, ifNotExists); }
Example 10
Source File: HealthElementByHcPartyTagCodeFilter.java From icure-backend with GNU General Public License v2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(healthcarePartyId, codeType, codeNumber, tagType, tagCode, status); }
Example 11
Source File: PathPaymentStrictSendResult.java From java-stellar-sdk with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(Arrays.hashCode(this.offers), this.last); }
Example 12
Source File: KBPTIMEXExpression.java From tac-kbp-eal with MIT License | 4 votes |
@Override public int hashCode() { return Objects.hashCode(year, month, day); }
Example 13
Source File: CrudOrder.java From mango with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(id, userId, price); }
Example 14
Source File: Versioned.java From atomix with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(value, version, creationTime); }
Example 15
Source File: DeepEqualsTesterTest.java From intellij with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(myName, myCorrectEqualsAndHash); }
Example 16
Source File: CacheStats.java From codebuff with BSD 2-Clause "Simplified" License | 4 votes |
@Override public int hashCode() { return Objects.hashCode(hitCount, missCount, loadSuccessCount, loadExceptionCount, totalLoadTime, evictionCount); }
Example 17
Source File: Options.java From incubator-tajo with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(keyVals); }
Example 18
Source File: WindowFrame.java From tablesaw with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(leftBoundType, initialLeftBound, rightBoundType, initialRightBound); }
Example 19
Source File: EstimatedHistogram.java From stratio-cassandra with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(getBucketOffsets(), getBuckets(false)); }
Example 20
Source File: PaymentResult.java From java-stellar-sdk with Apache License 2.0 | 4 votes |
@Override public int hashCode() { return Objects.hashCode(this.code); }