Java com.google.common.base Objects fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.base Objects fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.base Objects.

The text is from its open source code.

Method

booleanequal(@Nullable Object a, @Nullable Object b)
Determines whether two possibly-null objects are equal.
TfirstNonNull(@Nullable T first, @Nullable T second)
Returns the first of two given parameters that is not null , if either is, or otherwise throws a NullPointerException .
inthashCode(@Nullable Object... objects)
Generates a hash code for multiple values.
ToStringHelpertoStringHelper(Object self)
Creates an instance of ToStringHelper .
ToStringHelpertoStringHelper(Class clazz)
Creates an instance of ToStringHelper in the same manner as Objects#toStringHelper(Object) , but using the name of clazz instead of using an instance's Object#getClass() .
ToStringHelpertoStringHelper(String className)
Creates an instance of ToStringHelper in the same manner as Objects#toStringHelper(Object) , but using className instead of using an instance's Object#getClass() .