List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:libepg.epg.section.descriptor.DescriptorsLoop.java
@Override public int hashCode() { int hash = 7; hash = 41 * hash + Objects.hashCode(this.data); return hash; }
From source file:com.erudika.scoold.core.Comment.java
public int hashCode() { return Objects.hashCode(getComment()) + Objects.hashCode(getCreatorid()); }
From source file:de.fraunhofer.iosb.ilt.sta.formatter.DataArrayValue.java
@Override public int hashCode() { int hash = 7; hash = 29 * hash + Objects.hashCode(this.datastream); hash = 29 * hash + Objects.hashCode(this.multiDatastream); hash = 29 * hash + Objects.hashCode(this.components); hash = 29 * hash + Objects.hashCode(this.dataArray); return hash;//from ww w. j a v a2 s . c o m }
From source file:org.jaqpot.core.model.JaqpotEntity.java
@Override public int hashCode() { int hash = 7; hash = 23 * hash + Objects.hashCode(this.id); return hash; }
From source file:io.github.moosbusch.lumpi.gui.impl.Expression.java
@Override public int hashCode() { return Objects.hashCode(this); }
From source file:com.alliander.osgp.domain.core.entities.Organisation.java
@Override public int hashCode() { return Objects.hashCode(this.organisationIdentification); }
From source file:ca.qhrtech.entities.BGLTable.java
@Override public int hashCode() { int hash = 5; hash = 23 * hash + (int) (this.id ^ (this.id >>> 32)); hash = 23 * hash + Objects.hashCode(this.creator); hash = 23 * hash + Objects.hashCode(this.game); hash = 23 * hash + (int) (this.pollId ^ (this.pollId >>> 32)); hash = 23 * hash + (this.publiclyVisible ? 1 : 0); hash = 23 * hash + (this.completed ? 1 : 0); hash = 23 * hash + Objects.hashCode(this.startDate); hash = 23 * hash + Objects.hashCode(this.invites); return hash;//from w w w .j a va2 s . c o m }
From source file:org.enderstone.server.entity.player.PlayerTextureStore.java
@Override public int hashCode() { int hash = 7; hash = 89 * hash + Objects.hashCode(this.data); return hash; }
From source file:cz.cuni.mff.d3s.tools.perfdoc.server.measuring.statistics.Statistics.java
@Override public int hashCode() { int hash = 3; hash = 53 * hash + Objects.hashCode(this.measurementResults); return hash;/*w w w .j a v a 2 s . c o m*/ }
From source file:org.protempa.valueset.ValueSetBuilder.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.id); hash = 79 * hash + Objects.hashCode(this.displayName); hash = 79 * hash + Arrays.deepHashCode(this.valueSetElementBuilders); hash = 79 * hash + Objects.hashCode(this.lowerBoundBuilder); hash = 79 * hash + Objects.hashCode(this.upperBoundBuilder); hash = 79 * hash + Objects.hashCode(this.sourceIdBuilder); hash = 79 * hash + Objects.hashCode(this.ordered); return hash;/* www. ja v a2 s. c om*/ }