if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProfileLevelIndicationDescriptor that = (ProfileLevelIndicationDescriptor) o;
if (profileLevelIndicationIndex != that.profileLevelIndicationIndex) {
return false;
}
return true;