Thursday, July 23, 2026
HomeLanguagesJavaJava Guava | Booleans.hashCode() method with Examples

Java Guava | Booleans.hashCode() method with Examples

Booleans.hashCode() is a method of Booleans class in Guava Library which is used to return a hash code for a boolean value. The hashCode is an unique integer value that is calculated by the compiler for an object. It remain the same if the object value does not changes.

Syntax:

public static int hashCode(boolean value)

Parameter: This method takes a mandatory parameter value which is a boolean value for which the hashCode is to be found.

Return Value: This method returns an integer value which is the hash code for the specified value.

Below programs illustrate the use of the above method:

Example-1 :




// Java code to show implementation of
// Guava's Booleans.hashCode() method
import com.google.common.primitives.Booleans;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
        // Using Booleans.hashCode() method to
        // get the hash code for value
        System.out.println(Booleans.hashCode(true));
    }
}


Output:

1231

Example 2 :




// Java code to show implementation of
// Guava's Booleans.hashCode() method
import com.google.common.primitives.Booleans;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
        // Using Booleans.hashCode() method to
        // get the hash code for value
        System.out.println(Booleans.hashCode(false));
    }
}


Output:

1237

Reference: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/primitives/Booleans.html#hashCode-boolean-

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS