public final class ObjectsHelper functions that can operate on any Object.
Static Methods
equal(Object a, Object b)
public static boolean equal(Object a, Object b)Determines whether two possibly-null objects are equal. Returns:
- trueif- aand- bare both null.
- trueif- aand- bare both non-null and they are equal according to Object#equals(Object).
- falsein all other situations.
This assumes that any non-null objects passed to this function conform to the 
 equals() contract.
| Parameters | |
|---|---|
| Name | Description | 
| a | Object | 
| b | Object | 
| Returns | |
|---|---|
| Type | Description | 
| boolean | |
toStringHelper(Object self)
public static Objects.ToStringHelper toStringHelper(Object self)Creates an instance of ToStringHelper.
This is helpful for implementing Object#toString(). Specification by example:
// Returns "ClassName{}" Objects.toStringHelper(this) .toString();
// Returns "ClassName{x=1}" Objects.toStringHelper(this) .add("x", 1) .toString();
// Returns "MyObject{x=1}" Objects.toStringHelper("MyObject") .add("x", 1) .toString();
// Returns "ClassName{x=1, y=foo}" Objects.toStringHelper(this) .add("x", 1) .add("y", "foo") .toString();
// Returns "ClassName{x=1}" Objects.toStringHelper(this) .omitNullValues() .add("x", 1) .add("y", null) .toString();
| Parameter | |
|---|---|
| Name | Description | 
| self | Objectthe object to generate the string for (typically  | 
| Returns | |
|---|---|
| Type | Description | 
| Objects.ToStringHelper | |