List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:br.com.alura.casadocodigo.models.CarrinhoCompras.java
@Override public int hashCode() { int hash = 5; hash = 13 * hash + Objects.hashCode(this.itens); return hash; }
From source file:com.jivesoftware.os.routing.bird.shared.InstanceDescriptorsRequest.java
@Override public int hashCode() { int hash = 7; hash = 31 * hash + Objects.hashCode(this.hostKey); return hash; }
From source file:com.jivesoftware.os.routing.bird.shared.TenantChanged.java
@Override public int hashCode() { int hash = 7; hash = 17 * hash + Objects.hashCode(this.tenantId); return hash; }
From source file:com.app.domain.Book.java
@Override public int hashCode() { int hash = 5; hash = 59 * hash + Objects.hashCode(this.id); hash = 59 * hash + Objects.hashCode(this.bookname); hash = 59 * hash + Objects.hashCode(this.author); return hash;/*from www.j a v a 2s. c om*/ }
From source file:com.weib.spittr.repostory.data.Spittle.java
@Override public int hashCode() { int hash = 7; hash = 83 * hash + Objects.hashCode(this.id); hash = 83 * hash + Objects.hashCode(this.time); return hash;/*from w w w .j a v a2s .c o m*/ }
From source file:me.ferrybig.javacoding.webmapper.EndpointResult.java
@Override public int hashCode() { int hash = 5; hash = 59 * hash + Objects.hashCode(this.result); hash = 59 * hash + Objects.hashCode(this.data); hash = 59 * hash + Objects.hashCode(this.contentType); return hash;//w w w. j ava2 s. c o m }
From source file:org.protempa.proposition.value.DateValueBuilder.java
@Override public int hashCode() { int hash = 5; hash = 53 * hash + Objects.hashCode(this.date); return hash; }
From source file:pl.lodz.p.edu.ftims.poi.poi.entities.History.java
@Override public int hashCode() { int hash = 5; hash = 67 * hash + Objects.hashCode(this.ID); return hash; }
From source file:org.protempa.proposition.value.NominalValueBuilder.java
@Override public int hashCode() { int hash = 7; hash = 37 * hash + Objects.hashCode(this.val); return hash;//from ww w. jav a 2s . c o m }
From source file:org.protempa.proposition.value.NumberValueBuilder.java
@Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.val); return hash;/* w w w.j a v a2 s. co m*/ }