Example usage for com.google.common.base Objects hashCode

List of usage examples for com.google.common.base Objects hashCode

Introduction

In this page you can find the example usage for com.google.common.base Objects hashCode.

Prototype

@CheckReturnValue
public static int hashCode(@Nullable Object... objects) 

Source Link

Document

Generates a hash code for multiple values.

Usage

From source file:org.locationtech.geogig.storage.mongo.MongoAddress.java

@Override
public int hashCode() {
    return Objects.hashCode(uri);
}

From source file:org.eclipse.mylyn.wikitext.core.parser.builder.event.HorizontalRuleEvent.java

@Override
public int hashCode() {
    return Objects.hashCode(HorizontalRuleEvent.class);
}

From source file:org.ingini.jactor.chat.domain.UserId.java

@Override
public int hashCode() {
    return Objects.hashCode(code);
}

From source file:org.jbb.lib.commons.vo.Password.java

@Override
public int hashCode() {
    return Objects.hashCode(String.copyValueOf(getValue()));
}

From source file:fr.norad.visuwall.api.domain.SoftwareProjectId.java

@Override
public int hashCode() {
    return Objects.hashCode(projectId);
}

From source file:com.facebook.presto.jdbc.PrestoIntervalYearMonth.java

@Override
public int hashCode() {
    return Objects.hashCode(months);
}

From source file:com.facebook.presto.metadata.Table.java

@Override
public int hashCode() {
    return Objects.hashCode(tableId);
}

From source file:org.eclipse.mylyn.wikitext.core.parser.builder.event.EndSpanEvent.java

@Override
public int hashCode() {
    return Objects.hashCode(EndSpanEvent.class);
}

From source file:org.eclipse.mylyn.wikitext.core.parser.builder.event.EndBlockEvent.java

@Override
public int hashCode() {
    return Objects.hashCode(EndBlockEvent.class);
}

From source file:org.eclipse.buildship.ui.view.task.FaultyProjectNode.java

@Override
public int hashCode() {
    return Objects.hashCode(getWorkspaceProject());
}