Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
int com.griddynamics.jagger.engine.e1.services.data.service.TestEntity.hashCode ( )

Definition at line 156 of file TestEntity.java.

156  {
157  int result = id != null ? id.hashCode() : 0;
158  result = 31 * result + (name != null ? name.hashCode() : 0);
159  result = 31 * result + (description != null ? description.hashCode() : 0);
160  result = 31 * result + (load != null ? load.hashCode() : 0);
161  result = 31 * result + (clockValue != null ? clockValue.hashCode() : 0);
162  result = 31 * result + (terminationStrategy != null ? terminationStrategy.hashCode() : 0);
163  result = 31 * result + (startDate != null ? startDate.hashCode() : 0);
164  result = 31 * result + (testGroupIndex != null ? testGroupIndex.hashCode() : 0);
165  result = 31 * result + (testExecutionStatus != null ? testExecutionStatus.hashCode() : 0);
166  result = 31 * result + (decision != null ? decision.hashCode() : 0);
167  result = 31 * result + (taskDataDto != null ? taskDataDto.hashCode() : 0);
168  return result;
169  }