Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
boolean com.griddynamics.jagger.engine.e1.services.data.service.MetricEntity.equals ( Object  o)

Definition at line 68 of file MetricEntity.java.

68  {
69  if (this == o) return true;
70  if (o == null || getClass() != o.getClass()) return false;
71 
72  MetricEntity that = (MetricEntity) o;
73 
74  if (plotAvailable != that.plotAvailable) return false;
75  if (summaryAvailable != that.summaryAvailable) return false;
76  if (!metricNameDto.equals(that.metricNameDto)) return false;
77 
78  return true;
79  }