List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:com.jivesoftware.os.upena.shared.Key.java
@Override public int hashCode() { int hash = 5; hash = 17 * hash + Objects.hashCode(this.key); return hash; }
From source file:sachin.spider.WebURL.java
@Override public int hashCode() { int hash = 5; hash = 53 * hash + Objects.hashCode(this.url); return hash; }
From source file:org.jnosql.artemis.column.DefaultEntityColumnPostPersist.java
@Override public int hashCode() { return Objects.hashCode(value); }
From source file:com.jivesoftware.os.upena.amza.shared.UpenaRingHost.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.host); hash = 79 * hash + this.port; return hash;/* w ww. j a v a 2s . c om*/ }
From source file:com.jivesoftware.os.routing.bird.shared.InstanceChanged.java
@Override public int hashCode() { int hash = 7; hash = 71 * hash + Objects.hashCode(this.hostKey); hash = 71 * hash + Objects.hashCode(this.instanceId); return hash;// w w w .j av a 2 s.co m }
From source file:com.linksinnovation.elearning.model.Answer.java
@Override public int hashCode() { int hash = 7; hash = 37 * hash + Objects.hashCode(this.id); return hash; }
From source file:com.linksinnovation.elearning.model.Viewer.java
@Override public int hashCode() { int hash = 3; hash = 67 * hash + Objects.hashCode(this.id); return hash; }
From source file:com.jivesoftware.os.upena.shared.Permission.java
@Override public int hashCode() { int hash = 5; hash = 37 * hash + Objects.hashCode(this.permission); return hash; }
From source file:co.edu.unal.arqdsoft.presentacion.Contenido.java
/** * * @return/*from ww w. j ava 2 s .c o m*/ */ @Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.dato); hash = 97 * hash + Objects.hashCode(this.html); return hash; }
From source file:edu.usu.sdl.openstorefront.web.rest.model.AttributeXrefMapView.java
@Override public int hashCode() { int hash = 3; hash = 47 * hash + Objects.hashCode(this.projectType); hash = 47 * hash + Objects.hashCode(this.issueType); hash = 47 * hash + Objects.hashCode(this.attributeType); hash = 47 * hash + Objects.hashCode(this.fieldName); hash = 47 * hash + Objects.hashCode(this.fieldId); hash = 47 * hash + Objects.hashCode(this.attributeName); hash = 47 * hash + Objects.hashCode(this.mapping); return hash;// w w w . j a va 2s . com }