Returns true if the arguments are equal to each other
and false otherwise.
Consequently, if both arguments are null, true
is returned and if exactly one argument is null, false is returned. Otherwise, equality is determined by using
the equals method of the first
argument.
Parameters
a
Object: an object
b
Object: an object to be compared with a for equality
Returns
boolean
true if the arguments are equal to each other
and false otherwise
Generates a hash code for a sequence of input values. The hash code is generated as if all
the input values were placed into an array, and that array were hashed by calling
hashCode(Object[]).
This method is useful for implementing hashCode() on objects containing
multiple fields. For example, if an object that has three fields, x, y, and
z, one could write:
@Override public int hashCode() {
return ObjectsCompat.hash(x, y, z);
}
Warning: When a single object reference is supplied, the returned value does not equal the
hash code of that object reference. This value can be computed by calling
hashCode(Object).
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# ObjectsCompat\n\nadded in [version 26.1.0](/topic/libraries/support-library/revisions) \nbelongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1 \nSummary: [Methods](#pubmethods) \\| [Inherited Methods](#inhmethods) \\| [\\[Expand All\\]](#) \n\nObjectsCompat\n=============\n\n| This package is part of the Android [support library](/topic/libraries/support-library) which is no longer maintained. The support library has been superseded by [AndroidX](/jetpack/androidx) which is part of [Jetpack](/jetpack). We recommend using the AndroidX libraries in all new projects. You should also consider [migrating](/jetpack/androidx/migrate) existing projects to AndroidX. To find the AndroidX class that maps to this deprecated class, see the AndroidX support library [class\n| mappings](/jetpack/androidx/migrate/class-mappings).\n\n\n`\npublic\n\n\nclass\nObjectsCompat\n`\n\n\n`\n\nextends Object\n\n\n`\n\n`\n\n\n`\n\n|---|---------------------------------------|\n| java.lang.Object ||\n| ↳ | android.support.v4.util.ObjectsCompat |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nThis class consists of static utility methods for operating on objects.\n\nSummary\n-------\n\n| ### Public methods ||\n|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` static boolean` | ` `[equals](/reference/android/support/v4/util/ObjectsCompat#equals(java.lang.Object, java.lang.Object))`(Object a, Object b) ` Returns `true` if the arguments are equal to each other and `false` otherwise. |\n| ` static int` | ` `[hash](/reference/android/support/v4/util/ObjectsCompat#hash(java.lang.Object...))`(Object... values) ` Generates a hash code for a sequence of input values. |\n| ` static int` | ` `[hashCode](/reference/android/support/v4/util/ObjectsCompat#hashCode(java.lang.Object))`(Object o) ` Returns the hash code of a non-`null` argument and 0 for a `null` argument. |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From class ` java.lang.Object ` |-------------------|-------------------------------| | ` Object` | ` clone() ` | | ` boolean` | ` equals(Object arg0) ` | | ` void` | ` finalize() ` | | ` final Class\u003c?\u003e` | ` getClass() ` | | ` int` | ` hashCode() ` | | ` final void` | ` notify() ` | | ` final void` | ` notifyAll() ` | | ` String` | ` toString() ` | | ` final void` | ` wait(long arg0, int arg1) ` | | ` final void` | ` wait(long arg0) ` | | ` final void` | ` wait() ` | ||\n\nPublic methods\n--------------\n\n### equals\n\nadded in [version 26.1.0](/topic/libraries/support-library/revisions) \n\n```\nboolean equals (Object a, \n Object b)\n```\n\nReturns `true` if the arguments are equal to each other\nand `false` otherwise.\n\n\nConsequently, if both arguments are `null`, `true`\nis returned and if exactly one argument is `null`, `false` is returned. Otherwise, equality is determined by using\nthe [equals](/reference/java/lang/Object#equals(java.lang.Object)) method of the first\nargument.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-----|-----------------------------------------------------------------|\n| `a` | `Object`: an object \u003cbr /\u003e |\n| `b` | `Object`: an object to be compared with `a` for equality \u003cbr /\u003e |\n\n| Returns ||\n|-----------|------------------------------------------------------------------------------|\n| `boolean` | `true` if the arguments are equal to each other and `false` otherwise \u003cbr /\u003e |\n\n**See also:**\n\n- [equals(Object)](/reference/java/lang/Object#equals(java.lang.Object)) \n\n### hash\n\nadded in [version 27.1.0](/topic/libraries/support-library/revisions) \n\n```\nint hash (Object... values)\n```\n\nGenerates a hash code for a sequence of input values. The hash code is generated as if all\nthe input values were placed into an array, and that array were hashed by calling\n[hashCode(Object[])](/reference/java/util/Arrays#hashCode(java.lang.Object[])).\n\nThis method is useful for implementing [hashCode()](/reference/java/lang/Object#hashCode()) on objects containing\nmultiple fields. For example, if an object that has three fields, `x`, `y`, and\n`z`, one could write:\n\n\u003e ```\n\u003e @Override public int hashCode() {\n\u003e return ObjectsCompat.hash(x, y, z);\n\u003e }\n\u003e \n\u003e ```\n**Warning: When a single object reference is supplied, the returned value does not equal the\nhash code of that object reference.** This value can be computed by calling [hashCode(Object)](/reference/android/support/v4/util/ObjectsCompat#hashCode(java.lang.Object)).\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Parameters ||\n|----------|------------------------------------------|\n| `values` | `Object`: the values to be hashed \u003cbr /\u003e |\n\n| Returns ||\n|-------|-----------------------------------------------------|\n| `int` | a hash value of the sequence of input values \u003cbr /\u003e |\n\n**See also:**\n\n- [hashCode(Object[])](/reference/java/util/Arrays#hashCode(java.lang.Object[])) \n\n### hashCode\n\nadded in [version 27.1.0](/topic/libraries/support-library/revisions) \n\n```\nint hashCode (Object o)\n```\n\nReturns the hash code of a non-`null` argument and 0 for a `null` argument.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-----|----------------------------|\n| `o` | `Object`: an object \u003cbr /\u003e |\n\n| Returns ||\n|-------|---------------------------------------------------------------------------|\n| `int` | the hash code of a non-`null` argument and 0 for a `null` argument \u003cbr /\u003e |\n\n**See also:**\n\n- [hashCode()](/reference/java/lang/Object#hashCode()) \n-\n\n Interfaces\n ----------\n\n - [Pools.Pool](/reference/android/support/v4/util/Pools.Pool)\n-\n\n Classes\n -------\n\n - [ArrayMap](/reference/android/support/v4/util/ArrayMap)\n - [ArraySet](/reference/android/support/v4/util/ArraySet)\n - [AtomicFile](/reference/android/support/v4/util/AtomicFile)\n - [CircularArray](/reference/android/support/v4/util/CircularArray)\n - [CircularIntArray](/reference/android/support/v4/util/CircularIntArray)\n - [LongSparseArray](/reference/android/support/v4/util/LongSparseArray)\n - [LruCache](/reference/android/support/v4/util/LruCache)\n - [ObjectsCompat](/reference/android/support/v4/util/ObjectsCompat)\n - [Pair](/reference/android/support/v4/util/Pair)\n - [PatternsCompat](/reference/android/support/v4/util/PatternsCompat)\n - [Pools](/reference/android/support/v4/util/Pools)\n - [Pools.SimplePool](/reference/android/support/v4/util/Pools.SimplePool)\n - [Pools.SynchronizedPool](/reference/android/support/v4/util/Pools.SynchronizedPool)\n - [SimpleArrayMap](/reference/android/support/v4/util/SimpleArrayMap)\n - [SparseArrayCompat](/reference/android/support/v4/util/SparseArrayCompat)"]]